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