static box Main { main() { try { print("in try") throw "oops" } catch (Exception e) { print("caught") } print("after") } }