clox/compiler.h

9 lines
133 B
C
Raw Normal View History

2019-06-02 14:58:15 -05:00
#ifndef clox_compiler_h
#define clox_compiler_h
#include "vm.h"
bool compile(const char* source, Chunk* chunk, bool repl);
#endif