BOO-996, BOO-995: Added "then" keyword to replace "else" semantic in looping construc...
[boo.git] / tests / testcases / integration / statements / declaration-1.boo
blobaa2d2cb80452a4d9432668282fbcbc0747344824
1 """
2 Hello
3 """
4 for item in [" Hello "]:
5 itemString as string
6 itemString = item
7 System.Console.Write(itemString.Trim())