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 basic-demo-3
|
|
10 gosub 41
|
|
20 print "second"
|
|
30 gosub 100
|
|
31 print "fourth"
|
|
35 end
|
|
40 return
|
|
41 print "first" : return
|
|
100 print "third"
|
|
110 goto 40 |