From: 7stud -- Date: 2007-10-09T07:14:02+09:00 Subject: Re: parts of speech in Ruby Chad Perrin wrote: > If objects are nouns and methods are verbs class Dog attr_accessor :bite #define = method: def bite=(str) @bite = str end end d = Dog.new d.bite = "worse than my bark" puts d.bite -- Posted via http://www.ruby-forum.com/.