Files
mach_examples/02_hello_world_html/main.c
2026-05-31 15:10:29 -05:00

20 lines
324 B
C

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