Help for this page
sub foo { 5/0; } print "Before foo\n"; ... # output Illegal division by zero at ...
sub foo { 5/$_[0]; } print "Before foo\n"; ... Before foo Oops! Going onto other things