I think var declarations are working correctly; no type checking yet

This commit is contained in:
2022-08-13 15:57:30 +01:00
parent 55aa6eb273
commit afad0d99cb
12 changed files with 120 additions and 120 deletions

View File

@@ -3,9 +3,9 @@
#include "literal.h"
typedef struct LiteralArray {
Literal* literals;
int capacity;
int count;
Literal* literals;
} LiteralArray;
void initLiteralArray(LiteralArray* array);