Initial commit

This commit is contained in:
ktkk 2026-01-13 19:52:23 +00:00
commit b2edca2cb4
25 changed files with 3590 additions and 0 deletions

11
compiler.h Normal file
View file

@ -0,0 +1,11 @@
#ifndef clox_compiler_h
#define clox_compiler_h
#include "object.h"
#include "vm.h"
ObjFunction* compile(const char* source);
void markCompilerRoots();
#endif // clox_compiler_h