Help for this page

Select Code to Download


  1. or download this
    my $myarray = shift;
  2. or download this
    my $myarray = @_;
  3. or download this
    sub print_arr {
      my $count = @_;
      my $arrayref = shift;
    ...
    my @arr = qw/Beer Wine PerlMonks/;
    
    print_arr(\@arr);
    
  4. or download this
    print_arr(@arr)