windjammer 0.48.0

A simple language inspired by Go, Ruby, and Elixir that transpiles to Rust - 80% of Rust's power with 20% of the complexity
Documentation
//! Windjammerscript: Tree-Walking Interpreter
//!
//! Evaluates Windjammer AST directly, without code generation.
//! Any `.wj` file that runs in the interpreter also compiles to Rust
//! via the standard backend — same source, two execution modes:
//!
//! - `wj run --interpret file.wj`  → instant execution, fast iteration
//! - `wj build --target rust file.wj` → production build, memory safe
//!
//! The interpreter uses reference semantics internally (no ownership tracking)
//! because safety is the compiler's job, not the interpreter's.

pub mod engine;
pub mod environment;
pub mod value;

mod expression_evaluation;
mod statement_execution;
mod value_operations;

pub use engine::Interpreter;
pub use environment::Environment;
pub use value::Value;