Hi,
So here it is: Pike v7.4 release 20 running Hilfe v3.5 (Incremental Pike Frontend)
float x; int n; x = 1.0;
(1) Result: 1.000000
n = 1; while (x != x + 1.0) { x *= 10.0; n++; }; n;
(2) Result: 1 Compiler Error: 1:Undefined identifier x. (3) Result: 1
Variable "x" is declared and accessible (1). I do something wrong? Regards, /Al