funcons-simple-0.1.0.3: tests/Kexceptions/Kexceptions04.output
=== Program ===
function main() {
var x = 1;
try { var x = 5; throw x; var y = x/0;} // division by zero unreachable
catch(y) {y = y + 2; print(y," ");} // new y here, the one declared by catch
print(x,"\n");
}
// 7 1
=== Output ===
Result:
null-value
Output Entity: standard-out
7," ",1,"\n"