This website requires JavaScript.
Explore
Help
Sign In
jeff
/
dust
Watch
1
Star
0
Fork
0
You've already forked dust
Code
d4aac2c729
dust
/
examples
/
fibonacci.ds
10 lines
84 B
Plaintext
Raw
Normal View
History
Unescape
Escape
Clean up
2023-11-03 22:04:45 +00:00
fib = |i| => {
Clean up example
2023-10-13 19:20:20 +00:00
if i <= 1 {
Implement new grammar
2023-10-09 19:54:47 +00:00
1
} else {
Clean up example
2023-10-13 19:20:20 +00:00
(fib i - 1) + (fib i - 2)
Implement new grammar
2023-10-09 19:54:47 +00:00
}
}
Clean up example
2023-10-13 19:20:20 +00:00
(fib 5)
Copy Permalink