aboutsummaryrefslogtreecommitdiffstats
path: root/tests/nested-ifs.forth
diff options
context:
space:
mode:
Diffstat (limited to 'tests/nested-ifs.forth')
-rw-r--r--tests/nested-ifs.forth7
1 files changed, 7 insertions, 0 deletions
diff --git a/tests/nested-ifs.forth b/tests/nested-ifs.forth
new file mode 100644
index 0000000..3b0b39c
--- /dev/null
+++ b/tests/nested-ifs.forth
@@ -0,0 +1,7 @@
+INPUT
+: f if 99 . if 88 . then 77 . then 66 . ;
+0 1 f
+OUTPUT
+99
+77
+66