Help for this page

Select Code to Download


  1. or download this
        sub alter_var(???) {
          my $var_in_sub = ???;
    ...
        my $var_elsewhere = 'aaa';
        alter_var($var_elsewhere);
        print $var_elsewhere; # should print 'bbb'