Compiler.h 119 B

123456789
  1. #ifndef COMPILER_H
  2. #define COMPILER_H
  3. #include "vm/ByteCode.h"
  4. ByteCode* cCompile();
  5. const char* cGetError();
  6. #endif