Files
hakorune/local_tests/mir_try_basic.nyash

13 lines
200 B
Plaintext

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