diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..ce01362 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +hello diff --git a/hello.c b/hello.c new file mode 100644 index 0000000..38b341f --- /dev/null +++ b/hello.c @@ -0,0 +1,8 @@ +#include "stdio.h" +#include "stdlib.h" + +int main(int argc, char *argv[]) +{ + printf("testing testing\n"); + return 0; +} diff --git a/hello.py b/hello.py deleted file mode 100644 index f301245..0000000 --- a/hello.py +++ /dev/null @@ -1 +0,0 @@ -print("Hello World!")