Ancient Wisdom, Modern Power
Pure Functions
Everything is a pure function - no side effects, no surprises
Concise Syntax
Minimal syntax with powerful composition
Immutable Data
All data is immutable by default
Pattern Matching
Elegant pattern matching for clean control flow
The Ancient Scrolls
First Principles
Eevo is built on three sacred principles:
- All is function
- All is data
- All is immutable
The Way of Eevo
| greet name = "Hello " + name
|
| main = greet "traveler"
Output: "Hello traveler"