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.

16 lines
205B

  1. 152 LOAD ( extra )
  2. : foo
  3. CASE
  4. 'X' OF 42 ENDOF
  5. 0x12 OF 43 ENDOF
  6. 255 OF 44 ENDOF
  7. 1+
  8. ENDCASE
  9. ;
  10. 'X' foo 42 #eq
  11. 0x12 foo 43 #eq
  12. 255 foo 44 #eq
  13. 254 foo 255 #eq
  14. 'S S0 #eq