Basic of 1-1

This commit is contained in:
DutchEllie 2021-12-18 11:02:50 +01:00
parent 3e285e26cb
commit ce5e74d972
3 changed files with 12 additions and 0 deletions

6
1-1/Makefile Normal file
View File

@ -0,0 +1,6 @@
CC := gcc
BIN := app
all: main.c
$(CC) $^ -o $(BIN)

BIN
1-1/app Executable file

Binary file not shown.

6
1-1/main.c Normal file
View File

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