Help for this page

Select Code to Download


  1. or download this
    my @set = qw(a b c);
    
    ...
    b,b,c
    b,c,c
    c,c,c
    
  2. or download this
    my @set = qw(foo bar baz);
    
    ...
    
    print "Combinations:\n";
    print "$_\n" for @comb;