Files
mach_examples/01_hello_world_text/main.c
2026-05-20 22:48:37 -05:00

11 lines
195 B
C

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