BOO-996, BOO-995: Added "then" keyword to replace "else" semantic in looping construc...
[boo.git] / tests / testcases / integration / statements / while-1.boo
blobd407e793da737405f8424b27bc17b1dbdd4f3621
1 """
5 """
6 i = 3
8 while i > 0:
9 System.Console.WriteLine(i)
10 --i