Files
mach_examples/02_hello_world_html/main.c
2026-05-23 12:45:32 -05:00

18 lines
293 B
C

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