funcons-simple-0.1.0.3: tests/Kexceptions/Kexceptions10.smp
var x;
function main() {
x = 5;
try {
throw 3;
print(x); // should not print this
} catch(y) {
print(y,"\n"); // should print this
}
}
// 3
var x;
function main() {
x = 5;
try {
throw 3;
print(x); // should not print this
} catch(y) {
print(y,"\n"); // should print this
}
}
// 3