From: Christian Neukirchen Date: 2005-04-21T04:00:32+09:00 Subject: Re: [NEWBIE]: Example from Pickaxe2 gives errors... (p. 31) writes: > Greeting all, > > How about a refreshingly easy question for a change.... > > > Really, really basic question I know, but: > > class Song > attr_writer :name, :artist, :duration > end > => nil > > song = Song.new("Blueberry Hill", "Fats Waller", 320) > => ArgumentError: wrong number of arguments (3 for 0) > from (irb):24:in `initialize' > from (irb):24:in `new' > from (irb):24 class Song < Struct.new(:name, :artist, :duration); end Song.new("Blueberry Hill", "Fats Waller", 320) => # -- Christian Neukirchen http://chneukirchen.org