Go to file
Seymur Bagirov 31e348643f fix: make repl remember variables between invocations
I forgot to make environment global between run() function calls.
To fix this, I just create the environment and pass it to interpret()
instead of creating it there
2025-01-13 08:41:04 +04:00
src fix: make repl remember variables between invocations 2025-01-13 08:41:04 +04:00
.gitignore chapter 5 2024-12-21 02:08:12 +04:00
Cargo.lock init commit 2024-10-31 01:57:26 +04:00
Cargo.toml init commit 2024-10-31 01:57:26 +04:00
README.md init commit 2024-10-31 01:57:26 +04:00

Izanami programming language

This language is implemented using the Crafting Interpreters book

The language will be written fully in Rust

Basically this is me following the book