mirror of
https://github.com/leporello-js/leporello-js
synced 2026-01-13 21:14:28 -08:00
deploy: leporello-js/app@a6e3f1b36f
This commit is contained in:
@@ -1,7 +1,7 @@
|
||||
// Fibonacci numbers
|
||||
|
||||
function fib(n) {
|
||||
if(n == 0 || n == 1) {
|
||||
if (n == 0 || n == 1) {
|
||||
return n
|
||||
} else {
|
||||
return fib(n - 1) + fib(n - 2)
|
||||
|
||||
Reference in New Issue
Block a user