diff --git a/README.md b/README.md index e50bc18..0f6fdad 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,6 @@ # clox — Crafting Interpreters (clox, C) A tiny bytecode VM + compiler for the Lox language, built while following *Crafting Interpreters*. This is a personal learning project. -**Status:** up through Chapter 14 (“Chunks of Bytecode”). ## Build @@ -40,8 +39,8 @@ Example output: ## Layout ``` -include/ # headers -src/ # .c files (chunk, value, memory, debug, main) +include/ # headers (.h files) +src/ # source (.c files) obj/ # build objects (generated) bin/ # executable output (generated) ```