Help for this page

Select Code to Download


  1. or download this
    use Data::Dumper;
    foo();
    ...
      $args[3]->{a}++;   # 1 -> 2 in z
      $args[4]->{a}++;   # 1 -> 2 in zz
    }
    
  2. or download this
    $x = 4;
    warn $x;
    ...
    sub blah {
      $_[0] += 3;
    }