Help for this page

Select Code to Download


  1. or download this
    my @array = ();
         # ... populate array here
    ...
              # ... do stuff to @localArray
              # ... it actually affects the original array
    }
    
  2. or download this
    #!/usr/bin/perl
    
    ...
    -----[ modifyArrayByReference() ]---------------
    Value @array[5][5][5] = '99'
    -----[ Done ]---------------