[starting forth notes] corrected a syntax error

This commit is contained in:
opfez 2022-07-29 22:25:16 +02:00
parent eff40cc587
commit 6817b7895f
1 changed files with 1 additions and 1 deletions

View File

@ -697,7 +697,7 @@ solutions to the problems found in the book.
be executed at definition time) by simply placing the immediate word behind a
definition.
: say-hello ." Hello " ; immediaten
: say-hello ." Hello " ; immediate
Now, if this word is placed in a colon definition, it will execute at compile
time rather than run time. It can still be executed interactively.