dust/examples/fibonacci.ds

10 lines
93 B
Plaintext

fib = |i <int>| <int> {
if i <= 1 {
1
} else {
(fib i - 1) + (fib i - 2)
}
}
(fib 5)