=== Program === var x; function main() { x = 5; try { throw 3; print(x); // should not print this } catch(y) { print(y,"\n"); // should print this } } // 3 === Output === Result: null-value Output Entity: standard-out 3,"\n"