for(i=0; i<10; ++i) {
try {
throw i
} catch (e) {
if (e == 5) {
continue;
}
println(e)
if (e == 8) {
break;
} finally {
if (i == 3) {
return;