Crow/examples/helloworld.cpp

14 lines
164 B
C++
Raw Normal View History

#include "crow.h"
int main()
{
crow::SimpleApp app;
CROW_ROUTE(app, "/")
([]() {
return "Hello world!";
});
app.port(18080).run();
}