Add .frt samples for Forth.

This commit is contained in:
Lars Brinkhoff
2014-09-30 07:01:35 +02:00
parent 86b4de89bd
commit 7a2be16d77
3 changed files with 23 additions and 0 deletions

7
samples/Forth/enum.frt Normal file
View File

@@ -0,0 +1,7 @@
\ Implements ENUM.
\ Double DOES>!
: enum create 0 , does> create dup @ 1 rot +! , does> @ ;
\ But this is simpler.
: enum create 0 , does> dup @ constant 1 swap +! ;