Help for this page

Select Code to Download


  1. or download this
    >perl -le"sub f { $_[0]=456; } $x=123; f($x); print $x;"
    456
    
  2. or download this
    >perl -le"sub f { $_[0]=3; } $#a=2; f($#a); print $#a;"
    3