Gosub(label)
This function jumps to the subroutine specified by label. The subroutine can call Return() to return to the point from where it was called.
a$="Hello World" Gosub(PRINTTEXT) WaitLeftMouse End Label(PRINTTEXT) Print(a$) ReturnThe above code prints the text "Hello World" on the screen and waits for the left mouse. Then quits.