compiler.h 480 B

12345678910111213141516171819
  1. /**
  2. ******************************************************************************
  3. * @file : compiler.h
  4. * @author : simon
  5. * @brief : None
  6. * @attention : None
  7. * @date : 2023/8/17
  8. ******************************************************************************
  9. */
  10. #ifndef CLOX__COMPILER_H_
  11. #define CLOX__COMPILER_H_
  12. /// \brief 编译
  13. /// \param source 源代码
  14. void compile(const char *source);
  15. #endif //CLOX__COMPILER_H_