Files
monkey/examples/fib.monkey
Chuck Smith 138df71cc8
Some checks failed
Publish Image / publish (push) Waiting to run
Test / build (push) Waiting to run
Build / build (push) Has been cancelled
build changes
2024-03-28 15:11:47 -04:00

8 lines
93 B
Plaintext

fib := fn(x) {
if (x < 2) {
return x
}
return fib(x-1) + fib(x-2)
}
print(fib(35))