Help for this page

Select Code to Download


  1. or download this
    sub myfunc {
    
       my $arrRef = shift;
       # do my stuff here
    }
    
  2. or download this
    my @arr = ($var);
    &myfunc(\@arr);
    
  3. or download this
    &myfunc(\($var));