From 5e4a9ac64741412bcd128ac88d25f04de743e939 Mon Sep 17 00:00:00 2001 From: Linus109 Date: Sun, 23 Nov 2025 11:21:55 +0100 Subject: [PATCH] using c now --- .gitignore | 1 + hello.c | 8 ++++++++ hello.py | 1 - 3 files changed, 9 insertions(+), 1 deletion(-) create mode 100644 .gitignore create mode 100644 hello.c delete mode 100644 hello.py 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!")