compiler/include/codegen.h

9 lines
106 B
C
Raw Normal View History

2024-07-21 02:04:32 +12:00
#include <ast.h>
#ifndef __CODEGEN_H__
#define __CODEGEN_H__
const char *codegen(ASTNode node);
2024-07-21 02:04:32 +12:00
#endif