8 lines
125 B
C
8 lines
125 B
C
#ifndef COMPILER_INCLUDED
|
|
#define COMPILER_INCLUDED
|
|
|
|
#include "vm.h"
|
|
bool compile(const char *source, Chunk *chunk);
|
|
|
|
#endif
|