This website requires JavaScript.
Explore
Help
Sign In
jeff
/
dust
Watch
1
Star
0
Fork
0
You've already forked dust
Code
Issues
dust
/
examples
/
fibonacci.ds
10 lines
96 B
Plaintext
Raw
Normal View
History
Unescape
Escape
Finish function syntax
2023-12-12 18:21:16 -05:00
fib = (fn i <int>) <int> {
Clean up example
2023-10-13 15:20:20 -04:00
if i <= 1 {
Implement new grammar
2023-10-09 15:54:47 -04:00
1
} else {
Clean up example
2023-10-13 15:20:20 -04:00
(fib i - 1) + (fib i - 2)
Implement new grammar
2023-10-09 15:54:47 -04:00
}
}
Clean up example
2023-10-13 15:20:20 -04:00
(fib 5)
Copy Permalink