Files
mach_examples/00_hello_text/main.c
2026-06-02 12:27:26 -05:00

11 lines
160 B
C

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