6 lines
103 B
Raku
6 lines
103 B
Raku
# catch an exception and show it
|
|
try {
|
|
die "this could go wrong mightily";
|
|
} catch {
|
|
print;
|
|
};
|