From: Rick DeNatale Date: 2007-10-18T04:56:48+09:00 Subject: Re: equal? versus eql? versus == versus === verus <=> On 10/17/07, Chad Perrin wrote: > > While we're discussing things with equal signs -- why isn't = a method? I assume you mean in the execution of an expression like a = b as opposed to a.b = c Now in the first case, what object is sent the message := Remember that variable aren't objects, they are references to objects, and assignment changes the binding of a variable it doesn't operate on an object. -- Rick DeNatale My blog on Ruby http://talklikeaduck.denhaven2.com/