modules
An implementation of VFX Forth like modules based on Forth-94 wordlists
Modules Glossary
END-MODULE ( old-current -- )
End a module definition. All module internal words are no longer accessible.
Only words that have been EXPORT
ed are still available.
EXPORT ( <name> old-current -- old-currrent )
Make the word named name accessible outside the module currently defined. After ´END-MODULE` this word is still available.
EXPOSE-MODULE ( <name> -- )
Make all internal words of the module named name available.
MODULE ( <name> -- old-current )
Start the definition of a new module named name.
by UlrichHoffmann
Versions
Tags
ansforth94, forth-94, forth-2012, moduleswordlist
Dependencies
None
Dependents
None