BOO-996, BOO-995: Added "then" keyword to replace "else" semantic in looping construc...
[boo.git] / tests / testcases / integration / statements / while-5.boo
blob88c1fc62f9016c3bf49b9a9a5a21f05ad69867ef
1 """
5 """
6 a = object()
7 i = 0
8 while a is not null:
9 print i
10 ++i
11 a = null if i > 2