- or download this
use POSIX 'strftime';
# ...
say POSIX::strftime('%a, %d %b %Y %T %z', localtime);
- or download this
use POSIX 'strftime';
# ...
say strftime('%a, %d %b %Y %T %z', localtime);
- or download this
use POSIX ();
# ...
say POSIX::strftime('%a, %d %b %Y %T %z', localtime);
- or download this
use POSIX;
# ...
say strftime('%a, %d %b %Y %T %z', localtime);