11 lines
143 B
C
11 lines
143 B
C
#ifndef clox_compiler_h
|
|
#define clox_compiler_h
|
|
|
|
#include "object.h"
|
|
#include "vm.h"
|
|
|
|
bool compile(const char* source, Chunk* chunk);
|
|
|
|
#endif
|
|
|