Files
mach_examples/01_hello_world_text/main.c

12 lines
208 B
C
Raw Normal View History

2025-07-24 12:46:01 -05:00
#include <mach.h>
mach(main){
context("greeting", "hello {{name}}");
resource("home", "/", .mime = m_txt,
.get = {
input({"name", .fallback = "world"}),
mustache("greeting")
}
);
}