Comprehensive guides and reference material for the next-generation functional programming language. Discover how to build efficient, maintainable applications with Epsilon.
curl --proto '=https' --tlsv1.2 -sSf https://epsilon-lang.org/install | sh
Invoke-WebRequest -Uri https://epsilon-lang.org/install.ps1 -OutFile epsilon.ps1
.\epsilon.ps1
// Open REPL
epsilon
// Expected response
Welcome to EpsilonLang v1.1.0 (2025-08-23)
Type :help for help, :exit to quit
λ
// Basic Program
let msg = "Hello, World!"
printf "%s\n" msg
Let Epsilon's type inference handle complex expressions automatically
Powerful pattern matching with algebraic data types
// Condition block
printf "Yes!"
// Optional else
else
printf "No!"
Yes! Epsilon supports Windows, macOS, and Linux platforms with native installers for each.
Epsilon is compiled to LLVM IR for maximum performance while retaining fast development through REPL.