"Austin Ziegler" <austin / halostatue.ca> wrote in message > You can do this with: > > @name = (defined? name and name) or "unknown" > "or" has very low precedence, this would be better: @name = ((defined? name and name) or "unknown")