Peter Donald wrote: > uggg this I didn't know. Is there any reason that objects are > created at the begining instead of as targets are executed ? > Ease of implementation ?
There are several reasons. The simplest is that the current architecture is to call the init method of every object before the execute method of any object is run. Moving object creation to execute would make this impossible... - Sam Ruby
