#include <mach.h>
void mach(){
resource("home", "/",
.get = {
input({"name", m_not_empty, .fallback = "world"}),
mustache(.body =
"<html>"
"<head></head>"
"<body>"
"<p>Hello {{name}}</p>"
"</body>"
"</html>"
)
}
);