Mirror of CollapseOS
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

10 行
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 = # ;