https://github.com/j00nathan/lex-parser-elgol
University project for Compilers course using Rust as programming language, with Logos (lexer) and Lalrpop (LR(1)/LALR(1) parser) crates. The goal of the project is to create a lexical and syntax analyser for an imaginary language, Elgol, invented by the course teacher
https://github.com/j00nathan/lex-parser-elgol
lalrpop lexer lexical-analysis logos parser rust syntax-analysis
Last synced: 9 months ago
JSON representation
University project for Compilers course using Rust as programming language, with Logos (lexer) and Lalrpop (LR(1)/LALR(1) parser) crates. The goal of the project is to create a lexical and syntax analyser for an imaginary language, Elgol, invented by the course teacher
- Host: GitHub
- URL: https://github.com/j00nathan/lex-parser-elgol
- Owner: J00naTHan
- Created: 2025-05-09T07:22:56.000Z (11 months ago)
- Default Branch: main
- Last Pushed: 2025-06-03T21:29:24.000Z (10 months ago)
- Last Synced: 2025-06-04T06:01:13.098Z (10 months ago)
- Topics: lalrpop, lexer, lexical-analysis, logos, parser, rust, syntax-analysis
- Language: Rust
- Homepage:
- Size: 12.7 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# lex-parser-elgol
University project for Compilers course using Rust as programming language, with Logos (lexer) and Lalrpop (LR(1)/LALR(1) parser) crates. The goal of the project is to create an