LABEL

From ICE Enterprises
Jump to navigation Jump to search

declare target for a GOTO command in a macro

<label name>    Name of label

The label command declares a destination point for a GOTO statement.  For
example:

SAY "point a"
GOTO pointc
SAY "point b"
LABEL pointc
SAY "point c"

Will cause the strings "point a" and "point c" to be printed while skipping
the line that prints "point b".

This command is an integral part of the GOTO command so see that command for
more information.

See also:  GOTO