File size: 429 Bytes
a2a15a2 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 |
10 REM "ON GOSUB/GOTO demo program"
20 REM ""
100 PRINT "For the solution to all problems:"
110 READ I
120 IF I=-1 END
130 GOSUB 800
140 GOTO 110
800 ON I GOTO 850, 860, 870
810 REM "default"
820 PRINT "Wrong number",I : RETURN
830 REM "The cases"
850 PRINT "Meditations"; : GOTO 900
860 PRINT "Alcohol"; : GOTO 900
870 PRINT "Chocolate"; : GOTO 900
900 PRINT " is the solution"
910 RETURN
1000 DATA 1,2,3,6,1000,-10,0,-9999,-1
|