Help for this page

Select Code to Download


  1. or download this
    sub tuples {
        my( $count, @set )= @_;
    ...
    for my $tuple (  @$tuples  ) {
        print "@$tuple\n";
    }
    
  2. or download this
    sub tupleMaker {
        my( $count, @set )= @_;
    ...
    while(  my @tuple= $gen->()  ) {
        print "@tuple\n";
    }