https://github.com/davidelettieri/lox
C# implementation of Lox from https://www.craftinginterpreters.com/
https://github.com/davidelettieri/lox
csharp lox
Last synced: about 2 months ago
JSON representation
C# implementation of Lox from https://www.craftinginterpreters.com/
- Host: GitHub
- URL: https://github.com/davidelettieri/lox
- Owner: davidelettieri
- Created: 2020-10-10T15:05:54.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2026-02-15T10:19:51.000Z (5 months ago)
- Last Synced: 2026-02-15T16:10:42.779Z (5 months ago)
- Topics: csharp, lox
- Language: C#
- Homepage:
- Size: 286 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Lox
C# implementation of Lox from https://www.craftinginterpreters.com/
I just ported all the code from the original Java implementation. Some changes were necessary for fixing keywords and methods naming conventions from Java to C#.
# Notes
In order to build the solution, you need to have a github PAT token (classic) with read-packages permissions set at the env variable GITHUB_PAT.
That's because the project is using a package I published on github.
# Tests
Tests were copied as is from the implementation, I used a console app to build the test cases from the .lox files in the test folders.