move to soml ending, new while example

This commit is contained in:
Torsten Ruger
2015-11-04 16:12:37 +02:00
parent 04c7ab7fee
commit 65e5f39420
7 changed files with 24 additions and 4 deletions

12
codes/a_while.soml Normal file
View File

@ -0,0 +1,12 @@
class Object
int main()
int i = 5
while_plus(i)
"out".putstring()
i = i - 1
end
return i
end
end