slc/main.c

11 lines
226 B
C
Raw Normal View History

2024-09-14 12:54:22 +02:00
#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;
}