On Tue, Apr 30, 2013 at 12:52 PM, Stéphane Ducasse <
stephane.duca...@inria.fr> wrote:

> Hi guys
>
> I would like to build a small lectures based on all the small little crazy
> expressions that we use
> like
>
>         StandardWindow allInstances do: #close.
>
> or
>
>         myObject pointersTo
>
> or
>
>         anObject become: String new.
>
> Do you have some cool expressions to share with me.
>
> Stef
>

my favourite, used to lock up Smalltalk VMs:

| pair |
pair := { #perform:withArguments:. nil }.
pair at: 2 put: pair.
pair perform: pair first withArguments: pair.

-- 
best,
Eliot

Reply via email to