Prev: Evaluating expressions. Up: Using BLOX. Next: Creating classes.
When you want to browse existing classes, or create new classes, you will want to look at BLOX's class browser, accessible via the ``Class Hierarchy Browser'' item in the Smalltalk menu. The window will look something like the following.

Scroll down in the region labeled ``Classes'' and click on True. You'll see that the lower pane, labeled ``Class Declaration'' above, changes. This is the Smalltalk expression that created the class. It says that it was created by using the Boolean class's
The top center pane, labeled ``Method Categories'' above, lists the different categories of methods within the class. Categorizing methods is not essential to Smalltalk, but it is useful.
Click on the ``basic'' category.

Click on the not method. The lower pane, labeled ``Method Definition,'' will show the method's definition. In this case, the method's definition is simply: It is to return false (a globally defined instance of the False class). This is what occurred when we sent the not method to true in the worksheet, and it printed false.
Prev: Evaluating expressions. Up: Using BLOX. Next: Creating classes.