Hi all,
I think I'm running into a bug in perl, or some syntax I'm not aware of. Can someone confirm either for me?
I'm running this with perl 5.6.1, here's the test case:
print(time, "\n");
print(time * 1000, "\n");
The output of this is:
1001696383
969003032
The first one is correct, but the second one is obviously not the result of multiplying the first by 1000.
thanks,
Abi