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