rubyx-debugger/codes/while.soml
2015-11-07 22:26:39 +02:00

13 lines
132 B
Plaintext

class Object
int main()
int i = 5
while_plus(i)
"out ".putstring()
i = i - 1
end
return i
end
end