clox/include/compiler.h
2024-09-08 15:57:08 -05:00

8 lines
125 B
C

#ifndef COMPILER_INCLUDED
#define COMPILER_INCLUDED
#include "vm.h"
bool compile(const char *source, Chunk *chunk);
#endif