Can call the compiler from command line with argument

This commit is contained in:
Krzosa Karol
2022-06-07 15:27:18 +02:00
parent 1a67fe3402
commit 44d26d6939
6 changed files with 40 additions and 18 deletions

View File

@@ -19,6 +19,11 @@ typedef float F32;
typedef double F64;
typedef S32 Bool;
typedef struct Slice{
S64 len;
void *data;
}Slice;
typedef struct String{
U8 *str;
S64 len;