Re: a question about syntax
- Posted by Michael Nelson <MichaelANelson at WORLDNET.ATT.NET> Feb 01, 2001
- 391 views
Gwen writes; <snip> > Do you know how to do this little thing with eu : > ex : > (with C) > bool flag, flag2; > flag = RandomBoolValue(); > flag2 = !flag; > > is there a quicker way than : > > integer flag, flag2 > flag=RandomTrueFalse() > > if flag=true then flag2=false > else flag2=true > end if integer flag, flag2 flag=RandomTrueFalse() flag2=not flag The Euphoria keyword "not" is the exact equivalent of C's "!" --Mike Nelson