RosettaCodeData/Task/Exceptions/Perl/exceptions-3.pl

7 lines
103 B
Raku

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