summaryrefslogtreecommitdiff
path: root/apps/examples/bastest/tests/test18.bas
blob: 73ab93e1b105e035842e77d0d110f2fad92bb89c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
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"