Help for this page

Select Code to Download


  1. or download this
    $x = 5;
    @a = ( $x );
    $a[0] = 7;
    print $x; # prints 5
    
  2. or download this
    $x = 5;
    foo( $x );
    ...
    sub foo {
        $_[0] = 7;
    }