=== Program === function main() { var e = 100; try { var x = 5; if (x >= 0) { throw x+2; } print(20); // should not be printed } catch(e) { print(e," "); // should print 7 } print(e," "); // should print 100 print(10,"\n"); } // 7 100 10 === Output === Result: null-value Output Entity: standard-out 7," ",100," ",10,"\n"