Thread: x == (y || z)
View Single Post
Old 05-04-2006, 12:26 AM   #1 (permalink)
Dipset
Account Terminated
 
Join Date: Sep 2002
Location: New York
Age: 22
Posts: 476
Default x == (y || z)

if (x == (y || z))

Is there a way to get something like that besides

if (x == y || x == z)
Dipset is offline   Reply With Quote