DMD 0.161 release

Jarrett Billingsley kb3ctd2 at yahoo.com
Tue Jun 20 18:12:22 PDT 2006


"Walter Bright" <newshound at digitalmars.com> wrote in message 
news:e79d2a$2o0c$2 at digitaldaemon.com...

> There was some thought about doing that, but I'm not so sure it wouldn't 
> be more confusing than useful.

Hehe, how true.  But hey, check it out:

void foo(void delegate() dg)
{
    writefln("before");
    dg();
}

foo =
{
    writefln("inside!");
};

A bit of property abuse.. 





More information about the Digitalmars-d-announce mailing list