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