From: Gregory Millam Date: 2003-12-20T07:06:20+09:00 Subject: Re: Lexically scoped variables Received: Sat, 20 Dec 2003 06:47:53 +0900 And lo Eric wrote: > scope { > foo = BigObject.new > ... manipulate foo ... > } Take an idea from File? BigObject.new do |foo| ... manipulate foo ... end