object
When you define a class, you have to specify a parent class. So how do
you start defining classes? There is one class available from the start:
object
. You can use it as ancestor for all classes. It is the
only class that has no parent. It has two selectors: construct
and print
.
Go to the first, previous, next, last section, table of contents.