Help for this page

Select Code to Download


  1. or download this
    sub first_sub {
        my ($args) = @_;
    ...
        ETC => 'etc',
       },
    );
    
  2. or download this
    my @temp = @{$args}{qw(ARG1 ARG2 ARG3)};
    
  3. or download this
    my @temp;
    push @temp, $args->{ARG1};
    push @temp, $args->{ARG2};
    push @temp, $args->{ARG3};