/** * @file main.cpp * @brief BytecodeExecutor 可执行入口 * @author * @date 2026-08-19 */ #include int main(int argc, char** argv) { (void)argc; (void)argv; std::printf("BytecodeExecutor 0.1\n"); return 0; }