in reply to Re: time() function
in thread time() function
overflow and$var = time * 1000;
not overflow?$var = time; $var *= 1000;
I believe that on my system (Win2k, perl 5.6.1) integers are 32 bit, just like returned by time() I verified this with print ($var&(~0)) which gives me (2**32)-1.
Does perl automatically decide (not) to use BigInts? Any ideas?
Ira,
"So... What do all these little arrows mean?"
~unknown
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Re: Re: time() function
by tachyon (Chancellor) on Sep 28, 2001 at 22:48 UTC |