From: Jacob Fugal Date: 2006-01-04T08:20:01+09:00 Subject: Re: Implicit block parameter? On 1/3/06, Ross Bamford wrote: > class String > def to_proc > lambda { eval self } > end > end > > [1,2,3].each &"puts it" > > gives: > > 1 > 2 > 3 > > => [1, 2, 3] Except, of course, for the exception: NameError: undefined local variable or method `it' ;) Jacob Fugal