retroforth/doc/book/techniques/definitions
crc 0c599add05 add new sections to documentation
FossilOrigin-Name: 64838647dd9e0ecf3e19ea0145208ecd2d5121a378f54d845fdb8cf530d8c556
2020-04-20 15:08:45 +00:00

10 lines
197 B
Text

# Defining Words
Words are named functions. To start a word, preceed it's name
with a colon. Follow this by the definition, and end with a
semicolon.
E.g.,
:do-nothing ;
:square dup * ;