6 lines
87 B
Perl
6 lines
87 B
Perl
#!/usr/bin/perl
|
|
|
|
use warnings;
|
|
use strict;
|
|
print scalar(localtime(time())), "\n";
|