Help for this page

Select Code to Download


  1. or download this
    sub foo {
      return eval { bar( shift ) } || 0;
    }
    
  2. or download this
    sub bar { return shift; }
    
  3. or download this
    print foo( 3 ), "\n";
    $@ = 3;
    ...
    __END__
    3
    0