in reply to Re: about int's
in thread about int's
But under normal conditions, Perl (the language) doesn't have integers. It has numerical values. They may internally represented by integers, but if the need arises, they are seemlessly upgraded to floats. And you need to jump to some hoops to find out the internal representation. The precision of floats may vary from platform to platform, but it's typically 64 bits. This means that if your perl uses 32 bit integers internally, Perl (the language) still is able to deal with integer numbers of around 53 bits without losing precision.
Abigail
|
|---|