=== Program === function main() { var x = 1; try { x = x + 1; throw x; x = x/0;} // division by zero unreachable catch(y) {x = y+1;} print(x,"\n"); } // 3 === Output === Result: () Output Entity: standard-out [3,"\n"]