This commit is contained in:
2025-06-21 19:22:32 +02:00
parent ea2ddf60f3
commit 827f324acc
4 changed files with 5 additions and 6 deletions

View File

@@ -3,12 +3,11 @@
#include "core.h"
int main(int argc, char **argv) {
int statusCode = 0;
initialiseCore();
initialiseDjStdCore();
Arena *arena = arenaAlloc(Megabytes(64));
list<string> args = getArgs(arena, argc, argv);
print("%S", strSplit(arena, "-"_s, "hallo-world"_s));
return statusCode;
return 0;
}