On Dec 29, 2007 12:53 PM, Tom Phoenix <rootbeer at redcat.com> wrote:
> MyClass class>>initialize
> super initialize.
> LastID := ifNil: [ LastID := 0 ] .
Oops -- Omit that first assignment operator.
LastID ifNil: [ LastID := 0 ].
--Tom Phoenix