This initial commit sets up the basic structure for a Rust implementation of the Lox interpreter, including: - Lexer for tokenizing source code - Parser for building AST - Basic interpreter functionality - Environment for variable storage The core components include source tracking, error handling, and basic expression evaluation.
7 lines
75 B
TOML
7 lines
75 B
TOML
[package]
|
|
name = "rlox"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
[dependencies]
|