A Lox implementation in C# written while following along to https://craftinginterpreters.com/
> dotnet build
> dotnet test
-- To run mutation tests and generate the report
> dotnet tool restore
> cd CraftingInterpretersNet.Tests
> dotnet stryker
- Support for Conditional (ternary)
? :operator- Chapter 6, challenge 2 https://craftinginterpreters.com/parsing-expressions.html#challenges
- Hat-tip to https://github.com/HanKruiger/jlox for the inspiration when I got stuck.
ExprandStmtclasses generated with a C# Source Generator,CraftingInterpretersNet.Generator
jloximplementation is done!cloximplementation is underway, see ./clox- We have the beginnings of a garbage collector. On to global variables - https://craftinginterpreters.com/global-variables.html