retroforth/doc/Namespaces.md
crc 01c40d9d3d shorter lines in docs
FossilOrigin-Name: a3102b7f4f5bd64f79d0ead274320061feb044e888718ffe45464a52ee4cf612
2017-10-22 18:39:45 +00:00

50 lines
725 B
Markdown

# Namespaces
Retro organizes words into *namespaces*. These are short prefix
strings at the start of a word name.
The primary namespaces are:
`ASCII:`
Holds ASCII character constants for control characters
`buffer:`
Contains words for operating on a simple linear LIFO buffer.
`c:`
Contains words for operating on ASCII character data.
`class:`
Contains class handlers for words.
`d:`
Contains words operating on the Dictionary.
`err:`
Contains words for handling errors.
`n:`
Contains words operating on numeric data.
`prefix:`
Contains prefix handlers.
`s:`
Contains words operating on string data.
`set:`
Contains words operating on sets (simple arrays)
`v:`
Contains words operating on variables.