Added C example.

This commit is contained in:
Johannes Findeisen 2024-04-30 01:11:01 +02:00
commit 03993bb64c

7
index.c Normal file
View file

@ -0,0 +1,7 @@
#include<stdio.h>
int main() {
printf("Content-type: text/plain\n\n");
printf("Hello from C\n");
return 0;
}