BOO-999
[boo.git] / tests / testcases / integration / statements / for_or-4.boo
blobaa95410ddd7f4318769531ba135de1ebd703a9fa
1 """
2 No items!
3 """
5 breaker = "none"
7 t = []
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"