Help for this page

Select Code to Download


  1. or download this
    sub s2 {
      my @r2;
    ...
      }
      return \@r2;
    }
    
  2. or download this
    sub s2 {
      my @r2;
      push @r2, [ splice @_, 0, 2 ] while @_;
      return \@r2;
    }