diff options
Diffstat (limited to 'tests/lxiny-examples/stack-manipulation2.forth')
-rw-r--r-- | tests/lxiny-examples/stack-manipulation2.forth | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/tests/lxiny-examples/stack-manipulation2.forth b/tests/lxiny-examples/stack-manipulation2.forth new file mode 100644 index 0000000..a154d40 --- /dev/null +++ b/tests/lxiny-examples/stack-manipulation2.forth @@ -0,0 +1,10 @@ +INPUT +1 2 3 4 tuck .s clearstack +1 2 3 4 over .s clearstack +1 2 3 4 2 roll .s clearstack +1 2 3 4 2 pick .s clearstack +OUTPUT +<5> 1 2 4 3 4 +<5> 1 2 3 4 3 +<4> 1 3 4 2 +<5> 1 2 3 4 2 |