compiler-lightning/include/codegen.h
2024-07-21 02:04:32 +12:00

8 lines
No EOL
106 B
C

#include <ast.h>
#ifndef __CODEGEN_H__
#define __CODEGEN_H__
const char* codegen(ASTNode* node);
#endif