Help for this page

Select Code to Download


  1. or download this
    my @setargs = ( $set1, $set2 );
    
  2. or download this
    my $setargs_ref = [ $set1, $set2 ];
    
  3. or download this
    foreach my $set (whatever loop) {
        push @setargs, $set;
        push @{ $setargs_ref }, $set; # explicit dereference
    }