fa/doc/md/GOTO.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

17 lines
237 B
Markdown

# Label keyword in fa
`Goto` keyword will jump to a defined label
`Goto` takes one inline argument, that is the name
of the label
Example of the `goto` keyword:
```fa
include 'std/std.fa'
label a
%EXIT_SUCCESS %exit
goto a
```