compiler/test/test_repeat.code
2009-05-24 13:01:45 -07:00

11 lines
No EOL
74 B
Text

a=10
b=0
repeat
a=a-5
b=b+1
if b == 2
break
end
end
c=a+b-2