Files
mach_examples/01_hello_world_text/main.c

15 lines
275 B
C
Raw Normal View History

2025-07-24 12:46:01 -05:00
#include <mach.h>
config mach(){
return (config) {
.resources = {
{"home", "/", .mime = m_txt,
.get = {
input({"name", .matches = m_not_empty, .fallback = "world"}),
render(.template = "Hello {{name}}")
}
}
}
};
}