J
John
Hi
use Time::HiRes qw (gettimeofday);
my ($secs,$milliseconds)=gettimeofday();
my $trans="$secs$milliseconds"; # 10 digits and 6 digits
Sometimes the length of $trans is 16 but sometimes it is 15.
Shouldn't it be 16 always?
Regards
John
use Time::HiRes qw (gettimeofday);
my ($secs,$milliseconds)=gettimeofday();
my $trans="$secs$milliseconds"; # 10 digits and 6 digits
Sometimes the length of $trans is 16 but sometimes it is 15.
Shouldn't it be 16 always?
Regards
John