migration

This commit is contained in:
Daniel Ledda
2025-11-09 04:18:08 +01:00
parent 768424e199
commit 52f9a2fe33
8 changed files with 121 additions and 130 deletions

View File

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