summaryrefslogtreecommitdiff
path: root/examples/fizzbuzz.dumb
diff options
context:
space:
mode:
Diffstat (limited to 'examples/fizzbuzz.dumb')
-rw-r--r--examples/fizzbuzz.dumb2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/fizzbuzz.dumb b/examples/fizzbuzz.dumb
index f9aa648..3cd0dba 100644
--- a/examples/fizzbuzz.dumb
+++ b/examples/fizzbuzz.dumb
@@ -10,6 +10,6 @@ PROC MAIN
''' concat the two strings and copy the inc., if the string is empty, swap them '''
++ OVER SWAP IF DUP "" == DO SWAP END
''' print the top of the stack, drop the next item, add 1 to inc. '''
- . DROP 1 +
+ PUTLN DROP 1 +
END
END