hello;
am very new to ruby...and am trying to use attr_reader to create the
accessor methods like this

class SomeClass
    attr_reader :name1 , :name2
end
nClass = SomeClass.new("hello","hello")

it bombs on SomeClass.new

any hints
thanks