diff options
Diffstat (limited to 'projects/Stacker/test/rrot.st')
-rw-r--r-- | projects/Stacker/test/rrot.st | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/projects/Stacker/test/rrot.st b/projects/Stacker/test/rrot.st deleted file mode 100644 index afbf556500..0000000000 --- a/projects/Stacker/test/rrot.st +++ /dev/null @@ -1,12 +0,0 @@ -# -# RROT test -# -# Logic: w1 w2 w3 -- w3 w1 w2 -# -FORWARD success; -FORWARD failure; -: try_0 0 = IF success ELSE failure ENDIF ; -: try_3 3 = IF try_0 ELSE failure ENDIF ; -: try_1 1 = IF try_3 ELSE failure ENDIF ; -: MAIN 0 1 2 3 RROT 2 = IF try_1 ELSE failure ENDIF ; - |