stuff/hello.c

7 lines
86 B
C

// Hello world in C
#include <stdio.h>
int main() {
printf("Hello, World!\n");
}