first commit

This commit is contained in:
2025-01-01 20:03:17 +00:00
commit 1131d1787c
8 changed files with 2695 additions and 0 deletions

15
app.cpp Normal file
View File

@@ -0,0 +1,15 @@
#include <math.h>
#include "core.cpp"
int main(int argc, char **argv) {
int statusCode = 0;
initialiseCore();
Arena *arena = arenaAlloc(Megabytes(64));
list<string> args = getArgs(arena, argc, argv);
{
log("teststr: %S :teststrend", strlit("teststring hahaha"));
};
return statusCode;
}