RosettaCodeData/Task/System-time/Perl/system-time-3.pl

6 lines
91 B
Perl
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
use DateTime;
my $dt = DateTime->now;
my $d = $dt->ymd;
my $t = $dt->hms;
print "$d $t\n";