Dialect of Python with explicit variable declaration and block scoping, with a lightweight and easy-to-embed bytecode compiler and interpreter.
Go to file
2020-12-26 09:32:21 +09:00
.gitignore through chapter 19 of Crafting Interpreters 2020-12-26 09:32:21 +09:00
chunk.c through chapter 19 of Crafting Interpreters 2020-12-26 09:32:21 +09:00
chunk.h through chapter 19 of Crafting Interpreters 2020-12-26 09:32:21 +09:00
compiler.c through chapter 19 of Crafting Interpreters 2020-12-26 09:32:21 +09:00
compiler.h through chapter 19 of Crafting Interpreters 2020-12-26 09:32:21 +09:00
debug.c through chapter 19 of Crafting Interpreters 2020-12-26 09:32:21 +09:00
debug.h through chapter 19 of Crafting Interpreters 2020-12-26 09:32:21 +09:00
demo.krk through chapter 19 of Crafting Interpreters 2020-12-26 09:32:21 +09:00
kuroko.c through chapter 19 of Crafting Interpreters 2020-12-26 09:32:21 +09:00
kuroko.h through chapter 19 of Crafting Interpreters 2020-12-26 09:32:21 +09:00
Makefile through chapter 19 of Crafting Interpreters 2020-12-26 09:32:21 +09:00
memory.c through chapter 19 of Crafting Interpreters 2020-12-26 09:32:21 +09:00
memory.h through chapter 19 of Crafting Interpreters 2020-12-26 09:32:21 +09:00
object.c through chapter 19 of Crafting Interpreters 2020-12-26 09:32:21 +09:00
object.h through chapter 19 of Crafting Interpreters 2020-12-26 09:32:21 +09:00
scanner.c through chapter 19 of Crafting Interpreters 2020-12-26 09:32:21 +09:00
scanner.h through chapter 19 of Crafting Interpreters 2020-12-26 09:32:21 +09:00
value.c through chapter 19 of Crafting Interpreters 2020-12-26 09:32:21 +09:00
value.h through chapter 19 of Crafting Interpreters 2020-12-26 09:32:21 +09:00
vm.c through chapter 19 of Crafting Interpreters 2020-12-26 09:32:21 +09:00
vm.h through chapter 19 of Crafting Interpreters 2020-12-26 09:32:21 +09:00