Jour 1 : hello world

This commit is contained in:
Hippolyte Chauvin 2023-12-03 16:51:53 +01:00
parent ffec99b70a
commit 1935cbac15

6
src/main.c Normal file
View file

@ -0,0 +1,6 @@
#include <stdio.h>
int main(int argc, char *argv[]) {
printf("Hello world!\n");
return 0;
}