Help for this page
my $T; if ($hour > 12) { ... } else { $T = 'AM'; }
my $T = 'AM'; if ($hour > 12) { $hour -= 12; $T = 'PM'; }