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
/
try-1.boo
blob
87bf11d1077dce28914dce0178918c13b8729f95
1
"""
2
caught!
3
should end up here!
4
5
"""
6
try
:
7
raise
System
.
ApplicationException
(
"caught!"
)
8
print
(
"should not get here!"
)
9
except
x
:
10
print
(
x
.
Message
)
11
print
(
"should end up here!"
);