mirror of
https://github.com/apache/nuttx-apps.git
synced 2026-09-01 06:33:07 +00:00
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
|