I have been converting some JavaScript code to newLISP. It is detailed astronomical calculations. Finally I notice something. The floats in newLISP are only 10 decimal digits long, while those in JavaScript are 16. I looked into the IEEE standard; there is 52 bits in which to store an integer without any loss of precision. That matches the output of JavaScript.
Lutz, are we using IEEE 64 bit floats in newLISP by default? I was hunting some bugs down for hours now, until I noticed this difference in precision.
newLISP uses IEEE-754 double floats. The 10 digits seen are only the default display resolution. Use the 'format' function to display more digits. See also in the distribution the file qa-specific-tests/qa-float for some other IEEE floating point specifics.
That is a relief, thanks for explaining.