Mirror of CollapseOS
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

13 lines
272B

  1. : ELSE ( a1 -- a2 | a1: IF cell a2: ELSE cell )
  2. COMPILE (br)
  3. 2 ALLOT
  4. DUP H@ -^ SWAP ( a-H a )
  5. !
  6. H@ 2- ( push a. -2 for allot offset )
  7. ; IMMEDIATE
  8. : [IF]
  9. IF EXIT THEN
  10. LIT< [THEN] BEGIN DUP WORD S= UNTIL DROP ;
  11. : [THEN] ;