Table of Contents

Goto

Format

goto label

Description

Jumps to the specified label.

See Also

Gosub / Return

Example

print "I";
goto skipit
print " don't";
skipit: #
print " want cookies."

will print

I want cookies.