aboutsummaryrefslogtreecommitdiff
path: root/projects/Stacker/test/nip2.st
diff options
context:
space:
mode:
Diffstat (limited to 'projects/Stacker/test/nip2.st')
-rw-r--r--projects/Stacker/test/nip2.st9
1 files changed, 0 insertions, 9 deletions
diff --git a/projects/Stacker/test/nip2.st b/projects/Stacker/test/nip2.st
deleted file mode 100644
index a171028a80..0000000000
--- a/projects/Stacker/test/nip2.st
+++ /dev/null
@@ -1,9 +0,0 @@
-#
-# NIP2 test
-#
-FORWARD success;
-FORWARD failure;
-: test_0 0 = IF success ELSE failure ENDIF ;
-: test_3 3 = IF test_0 ELSE failure ENDIF ;
-: test_4 4 = IF test_3 ELSE failure ENDIF ;
-: MAIN 0 1 2 3 4 NIP2 test_4 ;