BOO-996, BOO-995: Added "then" keyword to replace "else" semantic in looping construc...
[boo.git] / tests / testcases / integration / statements / break-1.boo
blobdc7f1fceae3c33792f90534f512a9c1f1272d142
1 """
8 """
9 i = 0
10 while i < 10:
11 print(i)
12 if ++i > 5:
13 break