This is an statically typed programming language focused on simplicity, safety, and performance. It uses immutable-by-default semantics, pass-by-value for primitives, and a reference-based memory model with automatic reference counting (refcount).
The syntax is inspired by modern languages but does not attempt to replicate any existing one. It is a pragmatic language designed to empower developers without exposing them to low-level memory concerns.
- Immutable by default: Variables and function parameters are immutable unless explicitly marked as
mut.