repo.or.cz
/
boo.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
BOO-996, BOO-995: Added "then" keyword to replace "else" semantic in looping construc...
[boo.git]
/
tests
/
testcases
/
integration
/
statements
/
while-5.boo
blob
88c1fc62f9016c3bf49b9a9a5a21f05ad69867ef
1
"""
2
0
3
1
4
2
5
"""
6
a
=
object
()
7
i
=
0
8
while
a
is not null
:
9
print
i
10
++
i
11
a
=
null if
i
>
2