aboutsummaryrefslogtreecommitdiff
path: root/buzzard/demo3.th
diff options
context:
space:
mode:
Diffstat (limited to 'buzzard/demo3.th')
-rw-r--r--buzzard/demo3.th15
1 files changed, 0 insertions, 15 deletions
diff --git a/buzzard/demo3.th b/buzzard/demo3.th
deleted file mode 100644
index c061b74..0000000
--- a/buzzard/demo3.th
+++ /dev/null
@@ -1,15 +0,0 @@
-: printfour
-
- dup ( save the number on top of the stack )
- 4 = ( compare it to four )
- if
- " forth " ( output a string for it )
- drop ( and delete the saved value )
- else
- .
- endif
-;
-
-: demo3 10 0 do i printfour loop cr ;
-
-demo3