Initial commit

This commit is contained in:
Mid
2023-08-27 19:48:06 +03:00
commit 945bb2a672
33 changed files with 2751 additions and 0 deletions

8
src/parse.h Normal file
View File

@@ -0,0 +1,8 @@
#ifndef NCTREF_PARSE_H
#define NCTREF_PARSE_H
#include"ast.h"
AST *nct_parse(Token*);
#endif