cgi/index.c
2024-04-30 01:11:01 +02:00

7 lines
122 B
C

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