This website requires JavaScript.
Explore
Help
Sign In
jeff
/
dust
Watch
1
Star
0
Fork
0
You've already forked dust
Code
172a6fa860
dust
/
examples
/
fibonacci.ds
10 lines
90 B
Plaintext
Raw
Normal View
History
Unescape
Escape
Fix function context bug
2024-01-28 23:42:27 +00:00
fib = (i <int>) <int> {
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
2024-01-28 22:46:15 +00:00
fib(i - 1) + fib(i - 2)
Implement new grammar
2023-10-09 19:54:47 +00:00
}
}
Fix function context bug
2024-01-28 23:42:27 +00:00
fib(8)
Copy Permalink