Re: a question about syntax

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

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

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

Search



Quick Links

User menu

Not signed in.

Misc Menu