From: Yukihiro Matsumoto Date: 2004-11-28T01:27:36+09:00 Subject: Re: How does Object#send work? Hi, In message "Re: How does Object#send work?" on Sun, 28 Nov 2004 01:22:53 +0900, "Giulio Piancastelli" writes: |I'm wondering... does Object#send start from the Object class to search |for the method to execute? "send" invokes the method of the receiver, i.e. you tried to invoke "select" method of class A object. You should have done arg0.send(arg0.text, 1) instead. matz.