feat: hello-world

This commit is contained in:
Ahmet Kaan GÜMÜŞ 2024-06-23 00:19:31 +03:00
parent 644f83810e
commit f8b61b1508
3 changed files with 11 additions and 0 deletions

5
001-hello_world/main.c Normal file
View file

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