===== Goto (Statement) ===== ==== Format ==== goto [[labelprogramsyntax|label]] ==== Description ==== Jumps to the specified label. ==== Example ==== print "I"; goto skipit print " don't"; skipit: # print " want cookies." will print I want cookies. ==== See Also ==== {{page>en:start#Program Control&noheader}} ==== Notes ==== As of version 0.9.9.2 [[goto|Goto]], [[gosubreturn|Gosub]], and labels can not be used in [[Function|Function]] and [[Subroutine|Subroutine]] definitions.