Skip to content

Instantly share code, notes, and snippets.

@miyakogi
Created January 13, 2015 03:01
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save miyakogi/58012e04971868be9591 to your computer and use it in GitHub Desktop.
Save miyakogi/58012e04971868be9591 to your computer and use it in GitHub Desktop.
Nimでフィボナッチ数列
proc fib(n: int): int =
if n < 2:
return n
else:
return fib(n - 1) + fib(n - 2)
echo(fib(30))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment