aboutsummaryrefslogtreecommitdiffstats
path: root/tests/lxiny-examples/stack-manipulation.forth
diff options
context:
space:
mode:
authordan <[email protected]>2023-05-29 16:08:47 -0400
committerdan <[email protected]>2023-05-29 16:08:47 -0400
commit31dcdd0c68c6fa9d5ec69a1c025ead619e30e08e (patch)
tree02926f0d4cc76ec9a2485159bb1def42cd7bfc22 /tests/lxiny-examples/stack-manipulation.forth
parenteeca88e98212d7b61253b4be5f4ebb2f4b36e770 (diff)
downloadforth-31dcdd0c68c6fa9d5ec69a1c025ead619e30e08e.tar.gz
forth-31dcdd0c68c6fa9d5ec69a1c025ead619e30e08e.tar.bz2
forth-31dcdd0c68c6fa9d5ec69a1c025ead619e30e08e.zip
tests: add lxiny-examples tests
Diffstat (limited to 'tests/lxiny-examples/stack-manipulation.forth')
-rw-r--r--tests/lxiny-examples/stack-manipulation.forth12
1 files changed, 12 insertions, 0 deletions
diff --git a/tests/lxiny-examples/stack-manipulation.forth b/tests/lxiny-examples/stack-manipulation.forth
new file mode 100644
index 0000000..1192bb9
--- /dev/null
+++ b/tests/lxiny-examples/stack-manipulation.forth
@@ -0,0 +1,12 @@
+INPUT
+3 dup .s clearstack
+2 5 swap .s clearstack
+6 4 5 rot .s clearstack
+4 0 drop .s clearstack
+1 2 3 nip .s clearstack
+OUTPUT
+<2> 3 3
+<2> 5 2
+<3> 4 5 6
+<1> 4
+<2> 1 3