From: Robert Klemme Date: 2005-12-08T21:37:35+09:00 Subject: Re: A small query Srinivas Jonnalagadda wrote: > Dear all, > > Object Pascal (at least as provided by Delphi) has a facility to send > a sequence of messages to the same receiver, using a construct called > 'with'. If 'obj' is an object with callable methods 'meth1', 'meth2' > and 'meth3', it is possible to write: > > with obj do > meth1(); > meth2(param); > meth3(param1, param2) > end > > Can a similar thing be accomplished in Ruby? obj.instance_eval do meth1 meth2(param) meth3(param1, param2) end Kind regards robert