Help for this page

Select Code to Download


  1. or download this
    use strict; use warnings;
    use Algorithm::Combinatorics qw(combinations);
    my $strings = [qw(Word1 Word2 Word3 Word4)];
    ...
    while (my $c = $iter->next) {
        print "@$c\n";
    }
    
  2. or download this
    Word1
    Word2
    Word3
    Word4
    
  3. or download this
    open (DATA, "text.txt");
    @Test = <DATA>;
    close DATA;