Don't forget operator precedence, Ted

by (Login Mikrondel)
R

LOOP UNTIL INP(ADD% + 1) AND 8 = 0

is interpreted as

LOOP UNTIL INP(ADD% + 1) AND (8 = 0)

but 8 is never equal to zero, so what we really want is this:

LOOP UNTIL (INP(ADD% + 1) AND 8) = 0

Posted on Apr 1, 2008, 1:09 AM
from IP address 220.245.178.133

Respond to this message   

Goto Forum Home


Response TitleAuthor and Date
* I did, thanks on Apr 1