RosettaCodeData/Task/Exceptions/Zkl/exceptions-1.zkl

5 lines
143 B
Text
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
try{ throw(Exception.BadDay) }
catch { println(__exception," was thrown") }
fallthrough { println("No exception was thrown") }
println("OK");