Re: true/false atoms?

new topic     » goto parent     » topic index » view thread      » older message » newer message

Kat wrote:

>while  datafound = "false"  or  data != -1  do

The '=' operator can't be used here. Try instead:

    while equal( datafound, "false" ) or data != -1 do

or (ick):

    while compare( datafound, "false" ) = 0 or data != -1 do

or (shudder):

    while not compare( datafound, "false" ) or data != -1 do

Thanks again, Rob, for adding the 'equal' function!

-- David Cuny

new topic     » goto parent     » topic index » view thread      » older message » newer message

Search



Quick Links

User menu

Not signed in.

Misc Menu