aboutsummaryrefslogtreecommitdiffstats
path: root/clox/src/compiler.h
blob: e7023a92ae44a3999a3fff4bac4e0788ff0153c1 (plain)
1
2
3
4
5
6
7
8
9
#ifndef COMPILER_H
#define COMPILER_H

#include "object.h"
#include "vm.h"

bool compile(const char *source, Chunk *chunk);

#endif