I have a plan.. I really DO

Johannes Loher johannes.loher at fg4f.de
Sun Jul 1 12:43:53 UTC 2018


Am 01.07.2018 um 14:12 schrieb Ecstatic Coder:
> 
> Add a 10-liner "Hello World" web server example on the main page and
> that's it.

There already is one in the examples:

#!/usr/bin/env dub
/+ dub.sdl:
name "hello_vibed"
dependency "vibe-d" version="~>0.8.0"
+/
void main()
{
    import vibe.d;
    listenHTTP(":8080", (req, res) {
        res.writeBody("Hello, World: " ~ req.path);
    });
    runApplication();
}



More information about the Digitalmars-d-announce mailing list