Labels and the goto Command (AGI)

From Sierra Wiki
Revision as of 16:41, 7 April 2025 by Andrew Branscom (talk | contribs)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigationJump to search


Labels and the goto Command



Introduction

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


References



Related Links

  •