clox/include/\

15 lines
142 B
Plaintext
Raw Normal View History

2024-09-01 22:43:28 +00:00
#ifndef VM_INCLUDED
#define VM_INLCUDED
#include "chunk.h"
typedef struct {
Chunk *chunk;
} VM;
void initVM();
void freeVM();
#endif