Files
mach_examples/02_hello_world_html/main.c
2026-05-20 23:26:27 -05:00

18 lines
306 B
C

#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>"
)
}
);
}