Help for this page

Select Code to Download


  1. or download this
    sub group {
       my $n = shift;
    ...
       push @rv, splice(@_, 0, $n) while @_;
       return @rv;
    }