8 lines
89 B
Perl
8 lines
89 B
Perl
#!/usr/bin/perl -w
|
|
|
|
$t = time();
|
|
|
|
$now = localtime($t);
|
|
|
|
print "Time is: $now\n";
|