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
/
for_or-4.boo
blob
aa95410ddd7f4318769531ba135de1ebd703a9fa
1
"""
2
No items!
3
"""
4
5
breaker
=
"none"
6
7
t
= []
8
9
for
item
in
t
:
10
found
=
item
11
if
item
.
Equals
(
breaker
):
12
break
13
or
:
14
print
"No items!"
15
continue
16
print
"More text"