mirror of
https://github.com/apache/nuttx-apps.git
synced 2025-07-06 20:00:45 +08:00
14 lines
175 B
QBasic
14 lines
175 B
QBasic
print "loop started"
|
|
x$=""
|
|
do while len(x$)<3
|
|
print "x$ is ";x$
|
|
x$=x$+"a"
|
|
y$=""
|
|
do while len(y$)<2
|
|
print "y$ is ";y$
|
|
y$=y$+"b"
|
|
loop
|
|
loop
|
|
print "loop ended"
|
|
|