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.

10 lines
254B

  1. ( Forth testing harness
  2. "#" means "assert". We stop at first failure, indicating
  3. the failure through IO on port 1 )
  4. : fail SPC ." failed" LF 1 1 PC! BYE ;
  5. : # IF SPC ." pass" LF ELSE fail THEN ;
  6. : #eq 2DUP SWAP . SPC '=' EMIT SPC . '?' EMIT = # ;