From: Shashank Date Date: 2002-09-15T07:26:08+09:00 Subject: Re: Total newbie, to_s method and format strings wrote in message news:r8fwjkta.fsf@online.no... > Here is my class definition (in case there is something glaringly obvious ^^^^^^^^^^^^ Yes > that I have done differently from the examples but am unable > to see myself). > "Song: #(@name)--#(@artist) (#(@duration))" ^ ^ ^ This should be curly braces { }, like so: "Song: #{@name}--#{@artist} (#{@duration})" HTH, -- Shanko