Help for this page

Select Code to Download


  1. or download this
    (
       ( return something() ) 
       or 
       ( croak "something didn't work" )
    );
    
  2. or download this
    > perl
    return
    __END__
    Can't return outside a subroutine at - line 2.
    
  3. or download this
     
    return ( 
        ( something() ) 
        or 
        ( croak "something didn't work" )
    );
    
  4. or download this
        # die of errors (from perspective of caller)
        croak "We're outta here!";