From: Eric Mahurin Date: 2005-05-12T05:06:45+09:00 Subject: Re: alternatives to ? : contruct > As an alternative to: > > a = y == z ? b : c > > we can say: > > a = (b if y == x) || c > > Can anyone think of others? Here is yet another solution (as long as b is not nil/false when y==z): a = y==z && b || c Yahoo! Mail Stay connected, organized, and protected. Take the tour: http://tour.mail.yahoo.com/mailtour.html