Labels and the goto Command
From AGI Wiki
Revision as of 19:05, 17 March 2018 by Andrew Branscom (talk | contribs) (Created page with "Labels and the goto Command Labels are given like this: Label1: The label name can contain letters, numbers, and the characters "_" and ".". No spaces are allowed. The got...")
Labels and the goto Command
Labels are given like this:
Label1:
The label name can contain letters, numbers, and the characters "_" and ".". No spaces are allowed.
The goto command takes one parameter, the name of a label.
goto(Label1);