11 lines
226 B
C
11 lines
226 B
C
|
#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;
|
||
|
}
|