diff options
Diffstat (limited to 'projects/Stacker/test/swap2.st')
-rw-r--r-- | projects/Stacker/test/swap2.st | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/projects/Stacker/test/swap2.st b/projects/Stacker/test/swap2.st deleted file mode 100644 index c4f1bbd..0000000 --- a/projects/Stacker/test/swap2.st +++ /dev/null @@ -1,10 +0,0 @@ -# -# SWAP2 test -# -FORWARD success; -FORWARD failure; -: try_0 0 = IF success ELSE failure ENDIF ; -: try_3 3 = IF try_0 ELSE failure ENDIF ; -: try_4 4 = IF try_3 ELSE failure ENDIF ; -: try_1 1 = IF try_4 ELSE failure ENDIF ; -: MAIN 0 1 2 3 4 SWAP2 2 = IF try_1 ELSE failure ENDIF ; |