Re: Wheter to return `super init' or allow the implicit self to be returned instead

bill-auger <[email protected]> Fri, 1 Jul 2022 19:16:28 -0400
Newsgroups gmane.comp.lang.smalltalk.gnu.general
Organization parabola
Message-ID <[email protected]>
i suppose that is because it is usual to want to call the
initializer immediately after instantiate an object and 

a_foo := (Foo new) initialize

rather than:

a_foo := Foo new
a_foo initialize