mirror of
https://github.com/yhirose/cpp-peglib.git
synced 2024-11-14 06:55:30 +00:00
18 lines
183 B
Plaintext
18 lines
183 B
Plaintext
/*
|
|
* Fibonacci
|
|
*/
|
|
|
|
fib = fn (x) {
|
|
if x < 2 {
|
|
x
|
|
} else {
|
|
self(x - 2) + self(x -1)
|
|
}
|
|
}
|
|
|
|
mut i = 0
|
|
while i < 30 {
|
|
puts("{i}: {fib(i)}")
|
|
i = i + 1
|
|
}
|