Mirror of CollapseOS
Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

17 строки
706B

  1. Defining words
  2. : x ... -- Define a new word
  3. ; R:I -- Exit a colon definition
  4. CREATE x -- Create cell named x. Doesn't allocate a PF.
  5. [COMPILE] x -- Compile word x and write it to HERE.
  6. IMMEDIATE words are *not* executed.
  7. COMPILE x -- Meta compiles. See B6.
  8. CONSTANT x n -- Creates cell x that when called pushes its
  9. value.
  10. DOES> -- See B4.
  11. IMMED? a -- f Checks whether wordref at a is immediate.
  12. IMMEDIATE -- Flag the latest defined word as immediate.
  13. LITA n -- Write address n as a literal.
  14. LITN n -- Write number n as a literal.
  15. VARIABLE c -- Creates cell x with 2 bytes allocation.