From 03993bb64cd8608f68f59982ce4e28479f2dda03 Mon Sep 17 00:00:00 2001 From: Johannes Findeisen Date: Tue, 30 Apr 2024 01:11:01 +0200 Subject: [PATCH] Added C example. --- index.c | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 index.c diff --git a/index.c b/index.c new file mode 100644 index 0000000..563c1f4 --- /dev/null +++ b/index.c @@ -0,0 +1,7 @@ +#include + +int main() { + printf("Content-type: text/plain\n\n"); + printf("Hello from C\n"); + return 0; +}