Can someone explain how a class can access the instance variables of its superclass and how that is not inheritance? I\'m talking about \'The Ruby Programming Language\' and the
super(x,y) calls the constructor of the base class, which is the initialize method.
If you take super(x,y) out, then the variables @x and @y won't appear in the derived class.