Help for this page

Select Code to Download


  1. or download this
    sub foo {
        my @arr = ();
    ...
    
        zzz($array_ref);   # zzz() will do some read-only operations with 
    +this array
    }
    
  2. or download this
    sub foo {
        my %hash = ();
    ...
    
        zzz(\@array);  # zzz() will do some read-only operations with this
    + array
    }