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/cg.h Normal file
View File

@@ -0,0 +1,8 @@
#ifndef H_CG
#define H_CG
#include"ast.h"
void cg_go(union AST*);
#endif