# myLox_cpp **Repository Path**: sky__sea/my-lox_cpp ## Basic Information - **Project Name**: myLox_cpp - **Description**: cpp 实现 craftinginterpreters 解释器 https://zaslee.github.io/craftinginterpreters/a-map-of-the-territory.html - **Primary Language**: C++ - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2024-12-06 - **Last Updated**: 2024-12-07 ## Categories & Tags **Categories**: Uncategorized **Tags**: Cpp, Inter, Interpreter ## README # 构建 ``` ➜ g++ -o myLox myLox.cpp -std=c++17 ➜ ./myLox ``` # 运行 ``` // source.lox print "Hello, world!"; ``` ``` ➜ ./myLox source.lox ➜ Hello, world! ```