Why cannot we have attribute access of the object from anywhere in the program by sennding a message @attribute class Example def initialize @number = '1.0' end end e = Example.new print e.@number => should print 1.0 rolo