summaryrefslogtreecommitdiff
path: root/projects/Stacker/test/while.st
diff options
context:
space:
mode:
Diffstat (limited to 'projects/Stacker/test/while.st')
-rw-r--r--projects/Stacker/test/while.st8
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 7798f12e1f..0000000000
--- 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;