From: Carter Davis Date: 2008-11-10T23:31:35+09:00 Subject: Re: Problem with object methods? Okay, I made an example. class FirstClass def initialize puts "YAY INITIALIZE!" end text def text puts "Yay more text!" end end firstClass = FirstClass.new Now, when I run this, it only uses the initialize method, not the text method. Is there any way that I can use the text method? -- Posted via http://www.ruby-forum.com/.