undar-lang/src/compiler.h

11 lines
139 B
C

#ifndef ZRL_COMPILER_H
#define ZRL_COMPILER_H
#include "lexer.h"
#include "opcodes.h"
bool compile(const char* source, VM* vm);
#endif