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