Help for this page

Select Code to Download


  1. or download this
    use strict;
    use warnings;
    ...
    foo( substr($x,2,1) ); # crashes here
    print "Alive!\n"; # not reached
    sub foo {}
    
  2. or download this
    use strict;
    use warnings;
    ...
    foo($y); # no-op
    print "Alive\n"; # we get here just fine
    sub foo {}