RosettaCodeData/Task/Jump-anywhere/MUMPS/jump-anywhere.mumps
Ingy döt Net db842d013d A-M baby
2013-04-10 21:29:02 -07:00

17 lines
357 B
Text

;Go to a label within the program file
Goto Label
;Go to a line below a label
Goto Label+lines
;Go to a different file
Goto ^Routine
;Go to a label within a different file
Goto Label^Routine
;and with offset
Goto Label+2^Routine
;
;The next two goto commands will both return error M45 in ANSI MUMPS.
NoNo
For
. Goto Out
Out Quit
Goto NoNo+2