diff --git a/hello_world/hw-in-c.c b/hello_world/hw-in-c.c new file mode 100644 index 0000000..3b7617c --- /dev/null +++ b/hello_world/hw-in-c.c @@ -0,0 +1,6 @@ +#include +int main() +{ + printf("Hello, World!"); + return 0; +}