From: Patrick Hurley Date: 2006-07-25T01:35:41+09:00 Subject: Re: Dumb question about assigments On 7/24/06, Andrew Huh? wrote: > I came across a attribute defined like: > class BlahBlah > def something=(x,y) > #code > end > end > > How can I assign values to this tipe of attribute? > thanks > Well this is pretty questionable code, but if you need to call it try: b = BlahBlah.new b.send :something=, x, y Good luck pth