Skip to content

Instantly share code, notes, and snippets.

@Quby
Created April 3, 2011 18:00
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 Quby/900618 to your computer and use it in GitHub Desktop.
Save Quby/900618 to your computer and use it in GitHub Desktop.
Math.add = function(a,b){
return a+b;
}
fib = Sequence([0,1],2,Math.add);
fib.take(20);
[0,1,1,2,3,5,8,13,21,34,55,89,144,233,377,610,987,1597,2584,4181]
fib.read(15);
377
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment