beautiful-racket/beautiful-racket/br/demo/basic/on.bas
2016-06-10 12:49:46 -07:00

11 lines
161 B
QBasic

#lang br/demo/basic
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