Updated README.md

Signed-off-by: Daniel Henry <iamdanhenry@gmail.com>
This commit is contained in:
2025-08-21 16:32:41 -05:00
parent afa24f5b7a
commit e9719fbe88

View File

@@ -1,7 +1,6 @@
# clox — Crafting Interpreters (clox, C) # 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. 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 ## Build
@@ -40,8 +39,8 @@ Example output:
## Layout ## Layout
``` ```
include/ # headers include/ # headers (.h files)
src/ # .c files (chunk, value, memory, debug, main) src/ # source (.c files)
obj/ # build objects (generated) obj/ # build objects (generated)
bin/ # executable output (generated) bin/ # executable output (generated)
``` ```