rubyx-debugger/codes/while.soml

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