From 12bb00ed4490bd1c41cb63aba6597f4b1cf7b2e4 Mon Sep 17 00:00:00 2001 From: ilsix Date: Thu, 4 Apr 2024 20:16:41 +0200 Subject: [PATCH] Untested C --- c/helloworld.c | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 c/helloworld.c diff --git a/c/helloworld.c b/c/helloworld.c new file mode 100644 index 0000000..ac98c61 --- /dev/null +++ b/c/helloworld.c @@ -0,0 +1,6 @@ +#include + +int main() { + printf("Hello World!\n"); + return 0; +} \ No newline at end of file