aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/codegen.h
blob: 95ec0696c90b0f2fb60950c08ebebb5d45ecce9c (plain)
1
2
3
4
5
6
7
8
#ifndef DUCC_CODEGEN_H
#define DUCC_CODEGEN_H

#include "ast.h"

void codegen(Program* prog, FILE* out);

#endif