How to access the variable @foo ?
Using the accessor automatically defined by Ruby : a.foo
a.foo
a.eval('@foo')
a.instance_eval('@foo')
a.instance_variable_get(:@foo)