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

#include "vm.h"

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

#endif