Sign in
apache
/
nuttx-apps
/
c6051e4c410f79b4cecc8a307430f7cdd0ba227d
/
.
/
examples
/
bastest
/
tests
/
test18.bas
blob: f4b18e78fdbc913556f1e51b5274da0f4bec5391 [
file
] [
log
] [
blame
]
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"