mirror of
https://github.com/apache/nuttx-apps.git
synced 2026-08-02 12:49:03 +00:00
10 lines
101 B
QBasic
10 lines
101 B
QBasic
|
|
print "loop started"
|
||
|
|
i=1
|
||
|
|
do
|
||
|
|
print "i is";i
|
||
|
|
i=i+1
|
||
|
|
if i>10 then exit do
|
||
|
|
loop
|
||
|
|
print "loop ended"
|
||
|
|
|