mirror of
https://github.com/apache/nuttx-apps.git
synced 2026-08-02 04:39:01 +00:00
12 lines
131 B
QBasic
12 lines
131 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
|
||
|
|
|