Antwort: Mixed feelings

Bob Arning arning at charm.net
Fri Jun 7 17:20:44 UTC 2002


On Fri, 07 Jun 2002 18:40:44 +0200 Kamil Kukura <kamk at volny.cz> wrote:
>I know what is #perform: I just meant to have written -
>
>perform: aSymbol *with: #(firstObject, secondObject, thirdObject)
>
>instad of perform: aSymbol with: firstObject with: secondObject with: 
>thirdObject

Kamil,

What you want is this:

	perform: aSymbol withArguments: {firstObject. secondObject. thirdObject} 

Cheers,
Bob



More information about the Squeak-dev mailing list