fa/doc/md/UNDEFINE.md
Ari Archer da55d1fab2
Add documentation for undefine
Signed-off-by: Ari Archer <ari.web.xyz@gmail.com>
2022-06-26 01:47:45 +03:00

18 lines
311 B
Markdown

# Undefine keyword in fa
`Undefine` keyword will undefine a defined macro
`Drop` takes one argument:
- Macro name
The arguments:
- Argument `macro name` defines the macro to-be-undefined name
Example of the `undefine` keyword:
```fa
macro hello 1 end
undefine hello -- Hello won't exist anymore
```