9 lines
127 B
C
Raw Normal View History

#ifndef wren_parser_h
#define wren_parser_h
#include "vm.h"
Block* compile(const char* source, size_t sourceLength);
#endif