Subject: Re: Another scrach on head
From: "trans. (T. Onoma)" <transami runbox.com>
Date: Sat, 30 Oct 2004 03:12:31 +0900
References: 115427118298118301
In-reply-to: 118301
On Friday 29 October 2004 02:07 pm, Zach Dennis wrote:
| ># 6
| >if (not a.nil?)
| > block # 6
| >end
You mean:
if (not (a.nil? or a.false?))
much easier
if a
T.