Help for this page

Select Code to Download


  1. or download this
    my @arr = qw( bar qux foo qux2 bar2 foo foo3 );
    my $marker = "foo";
    
  2. or download this
    foo
    qux2
    bar2
    foo
    foo3
    
  3. or download this
    my @arr = qw( bar qux foo qux2 bar2 foo foo3 );
    my $marker = "foo";
    ...
                print "$arr\n";
    }