musique/examples/fib.mq
2022-10-27 22:32:20 +02:00

6 lines
58 B
Plaintext

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