Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Real functions #94

Closed
mdraith opened this issue Jul 3, 2024 · 1 comment
Closed

Real functions #94

mdraith opened this issue Jul 3, 2024 · 1 comment

Comments

@mdraith
Copy link

mdraith commented Jul 3, 2024

Something like this:

FUNC FIBONACCI N
  IF N<=1
    RETURN N
  ELSE
    RETURN FN FIBONACCI N-1 + FN FIBONACCI N-2
  ENDIF
ENDFUNC
@dmsc
Copy link
Owner

dmsc commented Jul 27, 2024

Duplicate of #69

@dmsc dmsc marked this as a duplicate of #69 Jul 27, 2024
@dmsc dmsc closed this as completed Jul 27, 2024
@dmsc dmsc reopened this Jul 27, 2024
@dmsc dmsc closed this as not planned Won't fix, can't repro, duplicate, stale Jul 27, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

2 participants