Help for this page

Select Code to Download


  1. or download this
    use strict;
    use warnings;
    ...
    my @keys = qw(day month date hour year);
    @hash{@keys}= split " ", $time_var;
    print "$_->$hash{$_}\n" for keys(%hash);
    
  2. or download this