RosettaCodeData/Task/Exceptions/HolyC/exceptions-1.holyc
2018-06-22 20:57:24 +00:00

8 lines
175 B
Text

try {
U8 *err = 'Error';
throw(err); // throw exception
} catch {
if (err == 'Error')
Print("Raised 'Error'");
PutExcept; // print the exception and stack trace
}