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.
break
andcontinue
in loopsdo
..while
loops- Number to string coercion on concatination (
+
)