https://github.com/byronmayne/loxsharp
The C# implementation of the Lox Tutorials written by @munificentbob found at http://www.craftinginterpreters.com/
https://github.com/byronmayne/loxsharp
Last synced: 3 months ago
JSON representation
The C# implementation of the Lox Tutorials written by @munificentbob found at http://www.craftinginterpreters.com/
- Host: GitHub
- URL: https://github.com/byronmayne/loxsharp
- Owner: ByronMayne
- License: mit
- Created: 2017-02-18T22:16:13.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2017-11-01T01:50:22.000Z (almost 8 years ago)
- Last Synced: 2025-04-22T18:11:53.383Z (6 months ago)
- Language: C#
- Homepage:
- Size: 98.6 KB
- Stars: 9
- Watchers: 4
- Forks: 1
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# LoxSharp
### Current Chapter 6 Parsing Expressions
The C# implementation of the Lox Tutorials written by @munificentbob found at http://www.craftinginterpreters.com/
[Crafting Interpreters](https://github.com/munificent/craftinginterpreters)
### Notes
* Instead of using an external script to generate the expressions this project uses [T4s](https://msdn.microsoft.com/en-us/library/bb126445.aspx) and are in the main project.
* A few functions have been renamed to match C# syntax standards but should be pretty easy to follow.