Create minimal C Project

This commit is contained in:
Laborratte 5 2024-07-20 18:46:52 +02:00
parent 11500fefed
commit 986c04053e
Signed by: Laborratte5
GPG key ID: 3A30072E35202C02
2 changed files with 12 additions and 0 deletions

5
runtime/Makefile Normal file
View file

@ -0,0 +1,5 @@
CC=gcc
CFLAGS=-I.
salruntime: salruntime.c
$(CC) -o $@ $^ $(CFLAGS)

7
runtime/salruntime.c Normal file
View file

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