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.
|
#lang br/demo/basic
|
|
10 GOSUB 50
|
|
15 PRINT "BOOM"
|
|
17 GOSUB 30
|
|
20 END
|
|
30 PRINT "YAY"
|
|
40 RETURN
|
|
50 PRINT "50"
|
|
55 RETURN |