Help for this page

Select Code to Download


  1. or download this
    my ($one, $two, $three) = qw(1 2 3);   # works with warnings and stric
    +tures
    
  2. or download this
    #!/usr/bin/perl -w
    use strict;
    ...
    
    print "wow\n" if $hash{foo}{bar};
    print $_, $/ for keys %hash;