Skip to content

Instantly share code, notes, and snippets.

@DFOXpro
Created December 6, 2014 18:46
Show Gist options
  • Save DFOXpro/7ad1bd83602a79fb04d4 to your computer and use it in GitHub Desktop.
Save DFOXpro/7ad1bd83602a79fb04d4 to your computer and use it in GitHub Desktop.
test 1
/*
* Licence: WTF-PL
*/
var main = function(value){
var i;
var fib = [];
fib[0] = 0;
fib[1] = 1;
for(i=2; i<=max; i++)
fib[i] = fib[i-2] + fib[i-1]
return fib[fib.length-1];
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment