You've already forked SpaghettiKart
mirror of
https://github.com/izzy2lost/SpaghettiKart.git
synced 2026-03-26 16:57:37 -07:00
6 lines
98 B
Lua
6 lines
98 B
Lua
|
|
function fib(n)
|
||
|
|
if n <= 1 then
|
||
|
|
return n
|
||
|
|
end
|
||
|
|
return fib(n - 1) + fib(n - 2)
|
||
|
|
end
|