add hello world

This commit is contained in:
Luca Conte 2024-03-14 10:35:07 +01:00
parent dc5c8d5048
commit 63ba039326
2 changed files with 8 additions and 0 deletions

2
u01/Makefile Normal file
View File

@ -0,0 +1,2 @@
cg1: main.c
gcc -o cg1.exe main.c

6
u01/main.c Normal file
View File

@ -0,0 +1,6 @@
#include <stdio.h>
int main(void) {
printf("Hello World");
return 0;
}