Posted By
 Csabo on 2004-12-27 08:51:37
| Re: Math error?
Nice find. The problem seems to be in the "power of" function. You can force the poor old Plus/4 to admit it even without a division, just write:
? 100 = 10^2
(Where ^ is SHIFT+zero of course). This will evaluate to false. So one wonders what the differnce between 100 and 100 is, so let's see:
? 10^2 - 100
The answer of course is 2.98023224E-08 I guess the real problem lies in the fact that 100 is stored internally as an integer number, but 10^2 is not. |