Roadmap Β· Getting Started Β· Examples
OtterLang is an indentation-sensitive programming language with an LLVM backend that compiles to native machine code. It combines Python-like simplicity with Rust-like performance and seamless (not yet) interoperability with the Rust ecosystem.
Think of OtterLang as a modern language that bridges the gap between high-level expressiveness and low-level performance, with transparent access to the entire Rust ecosystem.
- π― Simple syntax β Indentation-driven, no braces or semicolons
- β‘ Native performance β Compiles to native binaries with LLVM
- π Transparent Rust FFI β Import any Rust crate with
use rust:crate_name(very barebones) - π‘οΈ Memory safety β Generational garbage collection with explicit root APIs
- π§΅ Concurrency β Built-in threaded task runtime
- π¦ Rich standard library β Comprehensive stdlib covering IO, networking, JSON, and more
git clone https://github.com/jonathanmagambo/otterlang.git
cd otterlang
nix develop
cargo build --release
./target/release/otter run hello.otSee the Getting Started Guide for detailed instructions.
Roadmap β project roadmap and future plans.
Getting Started β installation, CLI walkthrough, first project.
Examples β curated sample programs.
Tutorials β guided walkthroughs for specific topics.
API Reference β stdlib module documentation.
Important
OtterLang is currently in Early Access (v0.1.0) and is being actively developed. If you plan to contribute, now is the time to provide a helping hand for the hardworking team.
OtterLang is free and open source, released under the BSD-3-Clause License. Contributions are welcome! See CONTRIBUTING.md for more information.