mirror of
https://github.com/samsonjs/compiler.git
synced 2026-03-25 08:45:52 +00:00
11 lines
No EOL
74 B
Text
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
|
|
|