#ifndef COMPILER_H
#define COMPILER_H

#include "vm/ByteCode.h"

ByteCode* cCompile();
const char* cGetError();
int cGetLine();

#endif