Skip to content

Instantly share code, notes, and snippets.

@naush
Created June 23, 2010 04:33
Show Gist options
  • Save naush/449497 to your computer and use it in GitHub Desktop.
Save naush/449497 to your computer and use it in GitHub Desktop.
var algo = {
set_fib: function(fib) { this.fib = fib; },
call_fib: function(n) {
return this.fib.recursive(n);
}
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment