diff --git a/runtime/Makefile b/runtime/Makefile new file mode 100644 index 0000000..ee84e75 --- /dev/null +++ b/runtime/Makefile @@ -0,0 +1,5 @@ +CC=gcc +CFLAGS=-I. + +salruntime: salruntime.c + $(CC) -o $@ $^ $(CFLAGS) diff --git a/runtime/salruntime.c b/runtime/salruntime.c new file mode 100644 index 0000000..608663e --- /dev/null +++ b/runtime/salruntime.c @@ -0,0 +1,7 @@ + +#include + +int main() { + printf("Hello, world!"); + return 0; +}