munificent / craftinginterpreters

Repository for the book "Crafting Interpreters"
http://www.craftinginterpreters.com/
Other
8.75k stars 1.03k forks source link

Not an issue #971

Open marinusmaurice opened 3 years ago

marinusmaurice commented 3 years ago

But a compliment. I find the way you explained everything in your book to be a pleasure to read. Many people explain how to create everything which you have explained in your book, but yours is the first I actually read because it was well explained and flowed beautifully. Well done!

munificent commented 3 years ago

Thank you! :D

heinthanth commented 3 years ago

Hello, sir @munificent , can you point us further resource like implementing register based VM, more optimization, etc. And also, I want you to write a write-up or walk-through on Wren :smile:. Thanks in advance!

munificent commented 3 years ago

further resource like implementing register based VM

The Implementation of Lua 5.0 is an excellent starting point. I don't know of other resources beyond that.

I want you to write a write-up or walk-through on Wren 😄. Thanks in advance!

I mean, the last half of Crafting Interpreters basically is that. I wrote the Lox VM by taking Wren and stripping out all the "weird" features like arity overloading, _ for fields, etc.