Skip to content

Instantly share code, notes, and snippets.

@yakkomajuri
Created July 13, 2020 20:05
Show Gist options
  • Save yakkomajuri/dd9bb49b68b7d9eee96230e60d9cf61c to your computer and use it in GitHub Desktop.
Save yakkomajuri/dd9bb49b68b7d9eee96230e60d9cf61c to your computer and use it in GitHub Desktop.
proc fibonacci(n: int): int =
if n <= 1:
return n
return fibonacci(n-1) + fibonacci(n-2)
echo(fibonacci(40))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment