In this example,
#include "crow.h"
int main(){
crow::SimpleApp app;
CROW_ROUTE(app, "/")([](){
return "Hello world";
});
app.port(18080).multithreaded().run();
}
What does this snippet ([](){
refer to ?
I cannot seem to find any reference to this in the C++ docs.