From: Martin DeMello Date: 2005-05-12T04:35:27+09:00 Subject: Re: alternatives to ? : contruct John-Mason P. Shackelford wrote: > As an alternative to: > > a = y == z ? b : c > > we can say: > > a = (b if y == x) || c > > Can anyone think of others? a = if y == z then b else c end martin