RosettaCodeData/Task/Execute-HQ9+/Forth/execute-hq9+.fth
Ingy döt Net 764da6cbbb CDE
2013-04-10 16:57:12 -07:00

11 lines
339 B
Forth

variable accumulator
: H cr ." Hello, world!" ;
: Q cr 2dup type ;
: 9 99 verses ; \ http://rosettacode.org/wiki/99_Bottles_of_Beer#Forth
: + 1 accumulator +! ;
: hq9+ ( "code" -- )
parse-word 2dup bounds ?do
i 1 [ get-current literal ] search-wordlist
if execute else true abort" invalid HQ9+ instruction"
then loop 2drop ;