Mirror of CollapseOS
Ви не можете вибрати більше 25 тем Теми мають розпочинатися з літери або цифри, можуть містити дефіси (-) і не повинні перевищувати 35 символів.

17 рядки
832B

  1. x CASE y OF A ENDOF z OF B ENDOF C ENDCASE: If x == y, execute
  2. A, if x == z, execute B. Otherwise, execute C. x is dropped
  3. in case of an OF match, *but it is kept if it reaches C*. You
  4. have to consume it to avoid PSP leak.
  5. (br) -- Branches by the number specified in the 2
  6. following bytes. Can be negative.
  7. (?br) f -- Branch if f is false.
  8. ( -- *I* Comment. Ignore input until ")" is read.
  9. [ -- Begin interpretative mode. In a definition,
  10. execute words instead of compiling them.
  11. ] -- End interpretative mode.
  12. ABORT -- Resets PS and RS and returns to interpreter.
  13. ABORT" x" -- *I* Compiles a ." followed by a ABORT.
  14. ERR a -- Prints a and ABORT. Defined early and used by
  15. drivers. (cont.)