class Song def initialize(title) @title = title end def to_s @title end end aSong = Song.new("My Way")