Files
mach_examples/02_hello_world_html/main.c

18 lines
306 B
C
Raw Normal View History

2025-07-24 12:46:01 -05:00
#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>"
)
}
);
}