refactor: tidy; fix runtime path resolution

This commit is contained in:
2026-01-17 13:45:44 +08:00
parent f2fc12026f
commit 09bfbca64a
21 changed files with 590 additions and 575 deletions

15
Justfile Normal file
View File

@@ -0,0 +1,15 @@
[no-exit-message]
@repl:
cargo run --bin repl
[no-exit-message]
@eval expr:
cargo run --bin eval -- '{{expr}}'
[no-exit-message]
@replr:
cargo run --bin repl --release
[no-exit-message]
@evalr expr:
cargo run --bin eval --release -- '{{expr}}'