Help for this page

Select Code to Download


  1. or download this
    #!/usr/env/perl
    
    ...
    }
    
    ##### returns nothing with 129 ####
    
  2. or download this
    my @x = (1..10);
    my @y = qw(one two three four five six seven eight nine ten);
    ...
    
    my @xyz = (\@x, \@y, \@z);
    my $glob = join( ',', map { '{' . join( ',', @$_ ) . '}' } @xyz );
    
  3. or download this
    sub make_combo_iter
    {
    ...
        }; # anonymous iterator sub
        return $iter;
    } # make_combo_iter