hello-world/c/helloworld.c

6 lines
72 B
C
Raw Normal View History

2024-04-06 23:46:54 +00:00
#include <stdio.h>
2024-04-04 18:16:41 +00:00
int main() {
printf("Hello World!\n");
return 0;
}