```
Object subclass: #Test
    instanceVariableNames: 'var1 var2'
    classVariableNames: ''
    package: 'MyTest'

I was struggling with instanceVariableNames even though they show up under 
methods.  Perhaps I'm just slow, but it wasn't until last night when I was 
reading on Object Pascal and there was an example:

type
  TProjector = class(TTelevision)
    Brightness, Temperature: Integer;
    procedure Focus(Length: Single);
  end;

Then it finally clicked with me that "var1" and "var2" under instance variables 
in Smalltalk would be like the method "Focus" in Object Pascal.  Is that 
correct, or am I still not getting it?
```

Reply via email to