Files
mach_examples/00_hello_text/main.c
2026-05-23 20:29:03 -05:00

11 lines
162 B
C

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