diff --git a/hello_world/hello.c b/hello_world/hello.c new file mode 100644 index 0000000..a1cd8b3 --- /dev/null +++ b/hello_world/hello.c @@ -0,0 +1,6 @@ +int puts(char *str); + +int main(){ + puts("Hello, World!"); + return 0; +}