dmsc / fastbasic

FastBasic - Fast BASIC interpreter for the Atari 8-bit computers
GNU General Public License v2.0
139 stars 20 forks source link

Real functions #94

Closed mdraith closed 4 months ago

mdraith commented 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
dmsc commented 4 months ago

Duplicate of #69