Help for this page

Select Code to Download


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