Files
mach_examples/01_hello_world_text/main.c
2026-05-23 19:43:50 -05:00

12 lines
209 B
C

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