This commit is contained in:
Daniel Ledda
2025-11-09 05:36:10 +01:00
parent 52f9a2fe33
commit db92620d65
3 changed files with 34 additions and 37 deletions

View File

@@ -1,4 +1,3 @@
#include <stdio.h>
#include "core.c"
int main(int argc, char **argv) {
@@ -6,7 +5,8 @@ int main(int argc, char **argv) {
Arena *arena = arenaAlloc(Megabytes(64));
StringList args = getArgs(arena, argc, argv);
print("%S", strSplit(arena, s("-"), s("hallo-world")));
printStrList(args);
printStrList(strSplit(arena, s("-"), s("the-quick-brown-fox-jumps-over-the-lazy-dog")));
return 0;
}