You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

17 regels
265 B

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;
}
}
}