repo.or.cz
/
ozulis.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
implemented return statement, and if/while/dowhile use ConditionalBranch but does...
[ozulis.git]
/
tests
/
lang
/
mugiwara
/
input
/
while.mgw
blob
72a1a380ba93d4c7bb7ba752829e4528178bf13b
1
int32 main()
2
{
3
int64 a;
4
5
a = 0;
6
while (a)
7
a = a + 1;
8
return a;
9
}