Restructuring

This commit is contained in:
Krzosa Karol
2024-01-12 11:28:19 +01:00
parent dde2334f95
commit eb60189b4b
39 changed files with 55 additions and 55 deletions

View File

@@ -0,0 +1,8 @@
#include "../core_library/core.h"
int main() {
MA_Arena arena = {};
int *a = MA_PushStruct(&arena, int);
*a = 10;
return 0;
}