musique/examples/fib.mq
2022-10-26 16:50:40 +02:00

6 lines
58 B
Plaintext

fib := (n |
if (n <= 1)
n
(fib (n-1) + fib (n-2))
);