Files
mach_examples/00_hello_text/main.c
2026-05-20 22:29:34 -05:00

10 lines
133 B
C

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