rubyx-debugger/codes/while.soml

13 lines
132 B
Plaintext
Raw Normal View History

2015-11-04 15:12:37 +01:00
class Object
int main()
int i = 5
while_plus(i)
2015-11-04 19:28:37 +01:00
"out ".putstring()
2015-11-04 15:12:37 +01:00
i = i - 1
end
return i
end
2015-11-04 19:28:37 +01:00
2015-11-04 15:12:37 +01:00
end