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