in reply to Re: Optimizing existing Perl code (in practise)
in thread Optimizing existing Perl code (in practise)

my $time1 = strftime "%H:%M:%S", localtime;
You mean s/localtime/time/ of course.

Makeshifts last the longest.

Replies are listed 'Best First'.
Re: Re^2: Optimizing existing Perl code (in practise)
by Hrunting (Pilgrim) on Aug 19, 2002 at 13:35 UTC
    You mean s/localtime/time/ of course.

    I sure hope he doesn't. From the POSIX perldoc page:

    Synopsis: strftime(fmt, sec, min, hour, mday, mon, year, wday = -1, yday = -1, + isdst = -1)
    Those are the same values as returned by localtime().