added main.c and makefile

This commit is contained in:
Richard Thier 2024-09-14 12:54:22 +02:00
parent 8370ff3c92
commit 0bd5940a47
2 changed files with 14 additions and 0 deletions

10
main.c Normal file
View File

@ -0,0 +1,10 @@
#include <stdio.h>
#include "hamt.h"
#include "turbolist/turbolist.h"
#include "engine/slc.h"
int main(int argc, const char **argv) {
// TODO: Implement CLI frontend...
puts("TODO: Implement CLI frontend...");
return 0;
}

4
makefile Normal file
View File

@ -0,0 +1,4 @@
debug:
gcc -g hamt.c main.c -o main
release:
gcc -O2 hamt.c main.c -o main