From: Justin To Date: 2008-06-18T00:31:27+09:00 Subject: Avoiding copies of method arguments Hello! v = 'abc' some-method(v) This will send a copy of v to the method, right? If so, how does one avoid this. How can one send the original and avoid the extra consumption of resources from copying? Thanks! -- Posted via http://www.ruby-forum.com/.