- or download this
$ perl -e'
use feature qw( try );
...
'
syntax error at -e line 4, near "};"
Execution of -e aborted due to compilation errors.
- or download this
$ perl -e'
use Try::Tiny;
...
'
syntax error at -e line 4, near "};"
Execution of -e aborted due to compilation errors.
- or download this
$ perl -e'
use feature qw( try );
...
CORE::say "ok";
'
ok
- or download this
$ perl -e'
use Try::Tiny;
...
CORE::say "ok";
'
ok