//Example of an echo server import vibe.vibe; void main() { listenTCP(7, (conn) { conn.write(conn); }); runApplication(); }