This commit is contained in:
2025-12-27 16:45:51 +03:00
parent 5674fd7391
commit 6df913def7

6
hello_world/hello.c Normal file
View File

@@ -0,0 +1,6 @@
int puts(char *str);
int main(){
puts("Hello, World!");
return 0;
}