Skip to content

Latest commit

 

History

History
14 lines (7 loc) · 479 Bytes

readme.md

File metadata and controls

14 lines (7 loc) · 479 Bytes

CsLox - A C# Lox Interpreter

A C# implementation of the Lox language interpreter from the Crafting Interpreters ebook by Bob Nystrom.

This is basically a direct port of jlox from the book, with a few changes to deal with the differences between C# and Java.

Language Extensions

  • break and continue in loops
  • do .. while loops
  • Number to string coercion on concatination (+)