Help for this page

Select Code to Download


  1. or download this
     
    sub myfunc (\[$@%]) {}
    
  2. or download this
    myfunc %hash;
    myfunc @array;
    myfunc $hashref;
    myfunc $arrayref;
    
  3. or download this
    myfunc \%hash;
    myfunc \@array;
    myfunc { key => 'value', key => 'value'};
    myfunc [ 'value', 'value' ];