Help for this page

Select Code to Download


  1. or download this
    use strict;
    use warnings;
    ...
    print "Alive!\n"; # not reached
    __END__
    substr outside of string at - line 4.
    
  2. or download this
    use strict;
    use warnings;
    ...
    bar($x);
    print "$x\n"; #prints 10
    sub bar { $_[0]=10; } # does $x=10, essentially
    
  3. or download this
    substr($x,2,1)=10