Help for this page

Select Code to Download


  1. or download this
    foreach my $hour (map { sprintf "%02d", $_ } 0 .. 23) {
       # Do Stuff Here
    }
    
  2. or download this
    foreach my $hour ( '00' .. '23' ) {
       # Do Stuff Here
    }