Re: true/false atoms?
- Posted by David Cuny <dcuny at LANSET.COM> Aug 11, 1999
- 531 views
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