I want to be able to write code like this:
MyObject subclass: #A instanceVariableNames: '' classVariableNames: '' poolDictionaries: '' category: 'CAT1'.
A subclass: #B instanceVariableNames: '' classVariableNames: '' poolDictionaries: '' category: 'CAT1'.
without running each line seperately.
When I try to do this I get an error saying that A isn't declared, even if it will be declared by the time the second line will be reached.
Is there a way to overcome this?