RosettaCodeData/Task/Flow-control-structures/BBC-BASIC/flow-control-structures.bbc
Ingy döt Net db842d013d A-M baby
2013-04-10 21:29:02 -07:00

11 lines
167 B
Text

GOSUB subroutine
(loop)
PRINT "Infinite loop"
GOTO loop
END
(subroutine)
PRINT "In subroutine"
WAIT 100
RETURN