RosettaCodeData/Task/Exceptions/Perl/exceptions-3.pl
2023-07-01 13:44:08 -04:00

6 lines
103 B
Raku

# catch an exception and show it
try {
die "this could go wrong mightily";
} catch {
print;
};