View Single Post
  #33  
Unread 01-08-2009, 07:25 AM
samejima samejima is offline
A Griffon
Interface Author - Click to view interfaces
 
Join Date: Jul 2005
Server: Unrest
Posts: 156
Default

OK I was trying to do stuff like

Cond= a==10 || a==5

with that being said would this be a valid statment


y=(a == 10)
z=(a == 5)
x=(COND ? true : false) COND=y || z

And this?
x=(COND ? true : false) COND=y || z y=(a == 10) z=(a == 5)

trying to keep it all on one line for a change instead of pressing return 1000x
Reply With Quote