Introducing vibe.d!

bearophile bearophileHUGS at lycos.com
Thu Apr 26 14:59:30 PDT 2012


Sönke Ludwig:

> See http://vibed.org/ for more information and some example

I see the code:

> import vibe.d;
> ...
> static this()
> {
> 	listenTcp(7, (conn){ conn.write(conn) });
> }

Isn't it better to use this?

import vibe.all;

And in the last line is a semicolon missing?

listenTcp(7, (conn){ conn.write(conn); });

Bye,
bearophile


More information about the Digitalmars-d-announce mailing list