From 63ba039326a149a5e3126b375d6921ccf2e8b095 Mon Sep 17 00:00:00 2001 From: Luca Giuliano Conte Date: Thu, 14 Mar 2024 10:35:07 +0100 Subject: [PATCH] add hello world --- u01/Makefile | 2 ++ u01/main.c | 6 ++++++ 2 files changed, 8 insertions(+) create mode 100644 u01/Makefile create mode 100644 u01/main.c diff --git a/u01/Makefile b/u01/Makefile new file mode 100644 index 0000000..d91c4a1 --- /dev/null +++ b/u01/Makefile @@ -0,0 +1,2 @@ +cg1: main.c + gcc -o cg1.exe main.c \ No newline at end of file diff --git a/u01/main.c b/u01/main.c new file mode 100644 index 0000000..4511edc --- /dev/null +++ b/u01/main.c @@ -0,0 +1,6 @@ +#include + +int main(void) { + printf("Hello World"); + return 0; +} \ No newline at end of file