Skip to content

Instantly share code, notes, and snippets.

@evansneath
Created August 20, 2011 22:44
Show Gist options
  • Save evansneath/1159773 to your computer and use it in GitHub Desktop.
Save evansneath/1159773 to your computer and use it in GitHub Desktop.
Tiny Fibonacci
def tiny_fibonacci(n):
# A very small Fibonacci sequence generator which prints 'n' values of the sequence.
a, b = 0, 1
(1..n).each{puts b; a, b = b, b + a}
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment