⚡
Rust-Powered
Tree-walk interpreter written in Rust. Compiles in seconds, runs instantly. Zero dependencies.
A fast, readable scripting language built in Rust. Designed for humans.
Clean syntax that reads like English, runs like Rust
# Variables and functions — no ceremony
let name = "World"
fn greet(who) {
say "Hello, {who}!"
}
greet(name)
# Arrays and higher-order functions
let nums = [1, 2, 3, 4, 5]
let even = filter(nums, fn(x) { return x % 2 == 0 })
let doubled = map(even, fn(x) { return x * 2 })
say "Result: {doubled}"
# Counted loops — reads like English
loop 3 times {
say "Zink! ⚡"
}Start writing readable code in minutes.