From c88b85cda5b0e8c0da8332c52b1fcb144b66714e Mon Sep 17 00:00:00 2001 From: Theo Date: Thu, 5 Sep 2024 13:36:32 +0200 Subject: [PATCH] Basic main --- main.c | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 main.c diff --git a/main.c b/main.c new file mode 100644 index 0000000..913edb7 --- /dev/null +++ b/main.c @@ -0,0 +1,8 @@ +#include +#include + +int main(int argc, char* argv[]) +{ + printf("Hello, World!"); + return EXIT_SUCCESS; +} \ No newline at end of file