diff options
Diffstat (limited to 'tests/simple-if2.forth')
-rw-r--r-- | tests/simple-if2.forth | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/simple-if2.forth b/tests/simple-if2.forth index 92bbc6b..67a72ac 100644 --- a/tests/simple-if2.forth +++ b/tests/simple-if2.forth @@ -1,4 +1,5 @@ INPUT -0 if 5 . then 8 . +: f 0 if 5 . then 8 . ; +f OUTPUT 8 |