Closed mdraith closed 4 months ago
Something like this:
FUNC FIBONACCI N IF N<=1 RETURN N ELSE RETURN FN FIBONACCI N-1 + FN FIBONACCI N-2 ENDIF ENDFUNC
Duplicate of #69
Something like this: