Files
hakorune/local_tests/simple_try_test.hako

6 lines
114 B
Plaintext

try {
print("In try block")
throw "Test exception"
} catch (Exception e) {
print("Caught exception")
}