dmsc/fastbasic

Real functions

Closed this issue · 1 comments

Something like this:

FUNC FIBONACCI N
  IF N<=1
    RETURN N
  ELSE
    RETURN FN FIBONACCI N-1 + FN FIBONACCI N-2
  ENDIF
ENDFUNC
dmsc commented

Duplicate of #69