Files
hakorune/simple_try_test.nyash

6 lines
114 B
Plaintext

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