Last updated about 3 years ago
Forth
Notes
Print Hello, World
: GREET ."Hello, World!" ;
GREET
WORDs
All definitions in forth are just “WORD”s. To define a specific word to mean something, we use the following form:
: SPECIFIC SOMETHING ;
where,
: = Start definition
SPECIFIC = Definition name
SOMETHING = Definition value
; = End definition