This website requires JavaScript.
Explore
Help
Sign In
s416496
/
musique
Watch
1
Star
0
Fork
0
You've already forked musique
Code
Issues
3
Pull Requests
1
Projects
Releases
Wiki
Activity
0529a84fb7
musique
/
examples
/
fib.mq
6 lines
64 B
Plaintext
Raw
Normal View
History
Unescape
Escape
Removed `[]` block notation in favour of unification with `()`
2022-10-25 16:10:34 +02:00
fib := (n |
if (n <= 1)
(| n)
(| fib (n-1) + fib (n-2))
);
Reference in New Issue
Copy Permalink