Re: [E-devel] Small embryo bug
John Slaten <[EMAIL PROTECTED]> [2005-03-25 13:20]: > There is a small bug in the embryo floating point support: > > [float < int] Thanks, applied. -- Regards, Tilman --- SF email is sponsored by - The IT Product Guide Read honest & candid r
[E-devel] Small embryo bug
There is a small bug in the embryo floating point support: native printf(format[], ...); main() { new Float:a; new i; a = 5.5; i = 3; if (a < i) { printf("%f < %i!\n", a, i); } else { printf("%f > %i\n", a, i); } } fails to compile - the fix is attached. --
