Help for this page

Select Code to Download


  1. or download this
    sub test {
       $_[0] = "new value";
    ...
       test($var);
       print("$var\n");
    }
    
  2. or download this
    sub test {
       # alias my $arg = $_[0];
    ...
       test($var);
       print("$var\n");
    }