# Lexical analysis **Repository Path**: ordinaryAnton/lexical-analysis ## Basic Information - **Project Name**: Lexical analysis - **Description**: 编译原理词法分析实验(针对TINY语言的词法分析器) - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2023-12-05 - **Last Updated**: 2024-01-02 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # 编译方法 ```powershell mkdir build cd build cmake .. -G 'MinGW Makefiles' mingw32-make ``` # 运行方法 - 可执行文件在目录 `bin` 中,tiny 语言的文件在 `tiny` 目录下,通过以下方式运行程序 ```bash ./bin/main.exe ./tiny/tiny.txt ``` - tiny+ 语言文件在 `tiny+` 目录下