diff --git a/main.c b/main.c new file mode 100644 index 0000000..627f18c --- /dev/null +++ b/main.c @@ -0,0 +1,10 @@ +#include +#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; +} diff --git a/makefile b/makefile new file mode 100644 index 0000000..469932c --- /dev/null +++ b/makefile @@ -0,0 +1,4 @@ +debug: + gcc -g hamt.c main.c -o main +release: + gcc -O2 hamt.c main.c -o main