function main() { try { print(1); throw("exc"); print(2); } catch(x) { print(3); print(x); } }