From: Robert Klemme Date: 2007-05-25T17:05:06+09:00 Subject: Re: Introducing the "it" keyword On 25.05.2007 01:00, Daniel DeLorme wrote: > Greg Fodor wrote: >> return it if |v + 1| < 10 > > No need for it to be such a special built-in construct. > Maybe you could do it like this: > > def it(*args) > $it = args unless args.empty? > return *$it > end > puts it if it(v+1) < 10 > > > Daniel > Not thread safe. robert