repo.or.cz
/
minnow.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Initial commit
[minnow.git]
/
samples
/
counter.mno
blob
4929855cd0fade2a0596a28b51bbc8f49ee7249a
1
action main(string[] args)
2
var int i = convertToInt(args[0])
3
var int total = 0
4
while (i > 0)
5
total = total + 1
6
i = i - 1
7
end
8
puti(total)
9
exit(0)
10
end