funcons-simple-0.1.0.3: tests/Kexceptions/Kexceptions14.smp
function main() {
try {
15;
} catch(e) {
print(e); // should not print this
}
print(42,"\n");
}
// 42
function main() {
try {
15;
} catch(e) {
print(e); // should not print this
}
print(42,"\n");
}
// 42