crow c 2b 2b

Solutions on MaxInterview for crow c 2b 2b by the best coders in the world

showing results for - "crow c 2b 2b"
Gladys
06 Oct 2019
1#include "crow.h"
2
3int main()
4{
5    crow::SimpleApp app;
6
7    CROW_ROUTE(app, "/")([](){
8        return "Hello world";
9    });
10
11    app.port(18080).multithreaded().run();
12}