test commit

master
Max Christian Pohle 2022-01-19 22:10:13 +01:00
parent 4d00c0d105
commit 311a696d86
2 changed files with 9 additions and 0 deletions

2
Makefile Normal file
View File

@ -0,0 +1,2 @@
all:
make main

7
main.c Normal file
View File

@ -0,0 +1,7 @@
#include <stdio.h>
#include <stdlib.h>
int main() {
puts("FOO");
return EXIT_SUCCESS;
}