Help for this page

Select Code to Download


  1. or download this
            my @array;
            push @array, "one";
    ...
      my @rest = combinations(@_);
      return @rest, map { [$first, @$_] } @rest;
    }
    
  2. or download this
    $VAR1 = [
              '',
    ...
              'one|two|three',
              'one|two|three|four'
            ];
    
  3. or download this
    $VAR1 = [
              'one|two|three|four'
    ...
              'one',
          ''          
            ];