Creates an attr_accessor declaration for an instance variable. An attr_accessor is syntactic sugar for defining a reader and writer method, it is equivalent to writing the following:

class Foo
  def foo
    @foo
  end

  def foo=(foo)
    @foo = foo
  end
end