#include #include module(hello_world){ context("greeting", "" "" "" "

Hello {{name}}

" "" "" ); http("home", "/", .get = { input({"name", not_empty_input, .default_value = "world"}), html("greeting", "hello"), http_response("hello") } ); }