fa/doc/md/LABEL.md
Ari Archer 5a7a737c75
Add labels and goto
Signed-off-by: Ari Archer <ari.web.xyz@gmail.com>
2022-07-06 12:48:28 +03:00

18 lines
267 B
Markdown

# Label keyword in fa
`Label` keyword will define a label, that is a rejumpanle
piece of code
`Label` takes one inline argument, that is the name
of the label
Example of the `label` keyword:
```fa
include 'std/std.fa'
label a
%EXIT_SUCCESS %exit
goto a
```