BOO-996, BOO-995: Added "then" keyword to replace "else" semantic in looping construc...
[boo.git] / tests / testcases / integration / statements / goto-4.boo
blobbff4bf5abe81f2cf1406e99ec8be7f3c2f4e04f5
1 """
2 before
3 after
4 end
5 """
6 f = def ():
7 print('before')
8 goto end
9 print('skipped')
10 :end
11 print('after')
13 f()
14 goto end
15 print('skipped')
16 :end
17 print("end")