repo.or.cz
/
boo.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
BOO-996, BOO-995: Added "then" keyword to replace "else" semantic in looping construc...
[boo.git]
/
tests
/
testcases
/
integration
/
statements
/
goto-4.boo
blob
bff4bf5abe81f2cf1406e99ec8be7f3c2f4e04f5
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'
)
12
13
f
()
14
goto
end
15
print
(
'skipped'
)
16
:
end
17
print
(
"end"
)
18