David Isaac wrote: > When I create an instance of a class, > are the class's functions *copied* to create the methods? > Or are method calls actually calls of the class's functions? On the class functions. You can make every instance have it's own methods, though - but only explicitly. Diez