clox/include/compiler.h

8 lines
125 B
C
Raw Permalink Normal View History

2024-09-08 20:57:08 +00:00
#ifndef COMPILER_INCLUDED
#define COMPILER_INCLUDED
#include "vm.h"
bool compile(const char *source, Chunk *chunk);
#endif