elλι

Documentation

Welcome to elλι

elλι is a next-generation functional programming framework optimized for performance, concurrency, and expressiveness. This documentation will help you master the fundamentals, core patterns, and advanced features.

🚀 Getting Started

Begin your journey with our interactive tutorial. Learn the basics of elλι's type-safe functional paradigm.

Start Learning

Pattern Matching

Leverage elλι's powerful pattern matching system for declarative data processing and transformation.

Concurrency Model

Explore our hybrid actor/event-driven concurrency model for building distributed systems.

Type System

Master the advanced type system with algebraic effects, higher-kinded types, and type-level programming.

Interoperability

Integrate with JavaScript, Rust, and WebAssembly for multi-language hybrid applications.

Code Examples

// Sample elλι code function factorial(n) = match(n) { | 0 | 1 => 1 | n => n * factorial(n-1) }