| 12345678910111213141516171819 |
- /**
- ******************************************************************************
- * @file : compiler.h
- * @author : simon
- * @brief : None
- * @attention : None
- * @date : 2023/8/17
- ******************************************************************************
- */
- #ifndef CLOX__COMPILER_H_
- #define CLOX__COMPILER_H_
- /// \brief 编译
- /// \param source 源代码
- void compile(const char *source);
- #endif //CLOX__COMPILER_H_
|