aboutsummaryrefslogtreecommitdiffstats
path: root/projects/Stacker/test/pick.st
diff options
context:
space:
mode:
Diffstat (limited to 'projects/Stacker/test/pick.st')
-rw-r--r--projects/Stacker/test/pick.st9
1 files changed, 0 insertions, 9 deletions
diff --git a/projects/Stacker/test/pick.st b/projects/Stacker/test/pick.st
deleted file mode 100644
index b9670b1..0000000
--- a/projects/Stacker/test/pick.st
+++ /dev/null
@@ -1,9 +0,0 @@
-#
-# PICK test
-#
-# Logic: // x0 ... Xn n -- x0 ... Xn x0
-#
-FORWARD success;
-FORWARD failure;
-: next 10 = IF success ELSE failure ENDIF ;
-: MAIN 0 1 2 3 4 5 6 7 8 9 10 5 PICK 5 = IF next ELSE failure ENDIF ;