vibe-core/examples/echo-server/source/app.d
2017-10-30 23:08:08 +01:00

10 lines
190 B
D

import vibe.core.core : runApplication;
import vibe.core.net : listenTCP;
import vibe.core.stream : pipe;
void main()
{
listenTCP(7000, (conn) { pipe(conn, conn); });
runApplication();
}