![]() |
|
XP is just a number | |
PerlMonks |
try/catch issueby perlancar (Hermit) |
on Jun 29, 2021 at 03:21 UTC ( #11134415=perlquestion: print w/replies, xml ) | Need Help?? |
perlancar has asked for the wisdom of the Perl Monks concerning the following question: I cannot seem to get try/catch to work without Feature::Compat::Try or Syntax::Keyword::Try on perl 5.34.0, any idea what I'm doing wrong? #!/usr/bin/env perl use feature "try"; no experimental "try"; try { die "woah"; } catch ($err) { print "blah\n"; } results in "Syntax error at ... line 8, near ) {", while this works: use Feature::Compat::Try; try { die "woah"; } catch ($err) { print "blah\n"; } as well as this: use Syntax::Keyword::Try; try { die "woah"; } catch ($err) { print "blah\n"; }
Back to
Seekers of Perl Wisdom
|
|