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
2f101fdccf
musique
/
examples
/
fib.mq
2 lines
59 B
Plaintext
Raw
Normal View
History
Unescape
Escape
New declaration syntax `x := foo` instead of `var x = foo` Additionaly moving into multiparameter binary operations
2022-09-18 14:50:20 +02:00
fib := [n | if (n <= 1) [ n ] [ fib (n-1) + fib (n-2) ] ];
Reference in New Issue
Copy Permalink