Skip to content

Instantly share code, notes, and snippets.

@drewblas
Created June 9, 2010 18:41
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 drewblas/431950 to your computer and use it in GitHub Desktop.
Save drewblas/431950 to your computer and use it in GitHub Desktop.
def fibsum(n);def f(i);i<2?i:f(i-1)+f(i-2);end;s=0;1.upto(n){|j|s+=f(j)};s;end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment