Labels and the goto Command

From AGI Wiki
(Redirected from Goto)
Jump to navigationJump to search

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);