Re: How to tell the difference bewteen comparing and assigning
- Posted by stabmaster_ at HOTMAIL.COM May 12, 2002
- 436 views
One way to spot comparisons (although it probably doesn't cover _all_ possible comparisons) are when '=' is used after 'if' or 'while' if 1=0 then... while 0=1 do... etc.