From: Paul Battley Date: 2005-05-12T04:34:08+09:00 Subject: Re: alternatives to ? : contruct > I'd really like to be able to say: > > a = b if y==z otherwise c How about: a = if (y == z) then b else c end Paul.