Help for this page

Select Code to Download


  1. or download this
        my $i;
        for $i (0..$#items) {
    ...
           print "$d\n";
    #      my $date = $hash{Date};
        }
    
  2. or download this
    for my $hashref (@items) {
       my $d = Dumper($hashref);
       print "$d\n";
    #  my $date = $hashref->{Date};
    }