Files
hello-world/hello.c
2025-02-11 01:30:18 -05:00

7 lines
77 B
C

#include <stdio.h>
int main(void) {
printf("Hello World!\n");
return 0;
}