-
Returns the Fibonacci number at the specified index.
Test Code:
if not Load('done', false) then for i = 0, 30 do local fib = CC_Fib(i) Log(i..' is '..fib) end Save('done', true) end
- This topic was modified 2 years, 10 months ago by . Reason: Removed output suggestions
- This topic was modified 2 years, 10 months ago by . Reason: Removed input suggestions
- This topic was modified 2 years, 10 months ago by . Reason: Made first twenty pre-calculated for efficiency
- This topic was modified 2 years, 9 months ago by . Reason: Updated to my latest standards