diff options
Diffstat (limited to 'projects/Stacker/test/while.st')
-rw-r--r-- | projects/Stacker/test/while.st | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/projects/Stacker/test/while.st b/projects/Stacker/test/while.st deleted file mode 100644 index 7798f12..0000000 --- a/projects/Stacker/test/while.st +++ /dev/null @@ -1,8 +0,0 @@ -# -# WHILE test -# -FORWARD success; -FORWARD failure; -: body "." >s DROP -- ; -: do_while WHILE body END ; -: MAIN 20 do_while 0 = IF success ELSE failure ENDIF; |