Calls a subroutine.
call <label>
Calls a subroutine beginning with the <label> line.
messagebox "I'm in main." "test" ; Jump to ":sub". call sub messagebox "Now I'm in main" "test" end ; Start of the subroutine. :sub messagebox "Now I'm in sub" "test" ; Go back to the main routine. return