e0dcfa0c55
* Remove multiple newlines at the end of file * Remove the white space from the end of line
11 lines
130 B
QBasic
11 lines
130 B
QBasic
10 gosub 20
|
|
20 gosub 30
|
|
30 procb
|
|
40 def proca
|
|
50 print "hi"
|
|
60 stop
|
|
70 end proc
|
|
80 def procb
|
|
90 proca
|
|
100 end proc
|