1INCLAN: label - labels used in macros in conjunction with goto statements

Usage: <label>: [<command> {<parameter>}]

In macros, labels are used as addresses for "goto" statements. A label
may consist of letters, digits, and underscore characters.

Example: go to clean
         .
         .
         clean: print "Doing cleanup..."

See also: goto
