hello world prog

This commit is contained in:
KIX
2025-10-18 04:07:34 -04:00
parent 6969815f8f
commit 02c9041d0e

8
hello_world.c Normal file
View File

@@ -0,0 +1,8 @@
#include <stdio.h>
int main(int argc, char **argv)
{
printf("Hello World >=<\n");
return 0;
}