You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
9 lines
124 B
QBasic
9 lines
124 B
QBasic
9 years ago
|
#lang br/demo/basic
|
||
9 years ago
|
10 GOSUB 50
|
||
9 years ago
|
15 PRINT "2 of 3"
|
||
9 years ago
|
17 GOSUB 30
|
||
|
20 END
|
||
9 years ago
|
30 PRINT "3 of 3"
|
||
9 years ago
|
40 RETURN
|
||
9 years ago
|
50 PRINT "1 of 3"
|
||
9 years ago
|
55 RETURN
|