9 lines
123 B
Perl
9 lines
123 B
Perl
|
#!/usr/bin/perl
|
||
|
|
||
|
use warnings;
|
||
|
use strict;
|
||
|
|
||
|
sub now { return \scalar(localtime) };
|
||
|
|
||
|
print "The time is ${&now}\n";
|