sample main file and fixed makefile

This commit is contained in:
2026-01-31 15:00:59 +01:00
parent 2cc8c87413
commit 20f44d51e9
2 changed files with 7 additions and 1 deletions

View File

@@ -52,6 +52,6 @@ clean:
rm -rf $(BUILDDIR)
run: all
$(RUN_CMD) ./data/Circuit.duckdb
$(RUN_CMD)
.PHONY: all clean run

6
src/main.c Normal file
View File

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