Help for this page

Select Code to Download


  1. or download this
    $key = @...[...];    <--- Wrong
    ^      ^                  It may work because Perl is "smart",
    ...
    ^      ^
    |      |
    +------+
    
  2. or download this
    # Wrong:
    print "hope 1 @{$months->[$i]}\n";
    ...
    print "hope 1 $months->[$i][0]\n";
    print "hope 2 $monthhash{trim($months->[$i][0])}\n";
    print "hope 2A $monthhash{$months->[$i][0]}\n";