compiler-lightning/include/codegen.h

8 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);
#endif