funcons-simple-0.1.0.3: tests/Kexceptions/Kexceptions09.smp
var x, y, z;
function g() {
throw 15;
}
function f() {
g();
}
function main() {
x = 5;
y = 10;
try {
f();
} catch(y) {
print(y," ");
}
print(x," ");
print(y,"\n");
}
// 15 5 10