59 breaking releases
| 0.61.0 | Jul 10, 2025 |
|---|---|
| 0.59.0 | Jul 10, 2025 |
| 0.23.0 | Mar 4, 2025 |
| 0.9.3 | Jun 13, 2024 |
#213 in Programming languages
4,847 downloads per month
120KB
3K
SLoC
som
An idiot admires complexity, a genius admires simplicity.
let fib = fn(n ~ int){
n if n < 2 else fib(n - 1) + fib(n - 2)
}
fib(10)
type Option<T> = Some(T) | None
type Rgb = { r ~ int, g ~ int, b ~ int }
type Color = Red
| Green
| Blue
| Hex(string)
| Rgb(Rgb)
let print_color = fn(color ~ Color) print(color)
Dependencies
~16–27MB
~368K SLoC