Add hello.c

This commit is contained in:
hakkeri 2025-12-28 00:29:44 +00:00
parent 50064d1254
commit a22a7acaa1
1 changed files with 6 additions and 0 deletions

6
hello.c Normal file
View File

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