diff --git a/hello_world.c b/hello_world.c new file mode 100644 index 0000000..1fc8245 --- /dev/null +++ b/hello_world.c @@ -0,0 +1,8 @@ +#include + +int main(int argc, char **argv) +{ +printf("Hello World >=<\n"); + return 0; +} +