Help for this page

Select Code to Download


  1. or download this
    sub double_it {
       $_[0] *= 2;
    ...
    print "\$x is $x\n";
    double_it($x);
    print "\$x now is $x\n";
    
  2. or download this
    $x is 1
    $x now is 2