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.
11 lines
158 B
QBasic
11 lines
158 B
QBasic
8 years ago
|
#lang basic-demo
|
||
9 years ago
|
10 X = 3
|
||
|
20 on X gosub 210, 220, 230
|
||
|
21 print "yay"
|
||
|
22 end
|
||
|
210 print "one"
|
||
|
211 return
|
||
|
220 print "two"
|
||
|
221 return
|
||
|
230 print "three"
|
||
|
231 return
|