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

267 B

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:

include 'std/std.fa'

label a
    %EXIT_SUCCESS %exit

goto a