Help for this page

Select Code to Download


  1. or download this
        my @suits = ("hearts","clubs","spades","diamonds");
    
  2. or download this
        my @suits = qw(hearts clubs spades diamonds);
    
  3. or download this
    use strict;
    use warnings;
    ...
    foreach (@files) {
        do_something_with_this_file($_);
    }