Help for this page

Select Code to Download


  1. or download this
    use strict;
    use warnings;
    
  2. or download this
    my @HappyArray = qw/ Perl Is Confusing Would Someone Please Help Me/;
    
  3. or download this
    foreach (@HappyArray) {
        print "$_\n";
    }
    
  4. or download this
    print "$_\n" for @HappyArray;
    
  5. or download this
    use strict;
    use warnings;
    ...
    print "$_\n" for @HappyArray;
    
    die "Done!";