From: Brian Candler Date: 2009-01-20T00:24:38+09:00 Subject: Re: how can we call a method without using . operator ruby rails wrote: > This might sound a bit wierd but I would like to know if > there are any other ways of calling a method without using . operator or > calling send(). (or __send__ presumably). How about this one? def foo puts "hello" end m = method(:foo) m[] What are you trying to achieve anyway? -- Posted via http://www.ruby-forum.com/.