Skip to content

Instantly share code, notes, and snippets.

@varavut
Created August 11, 2015 11:54
Show Gist options
  • Save varavut/66d5aebab4d8c36f2697 to your computer and use it in GitHub Desktop.
Save varavut/66d5aebab4d8c36f2697 to your computer and use it in GitHub Desktop.
function F(n, a, b){
if(!a)
a = 0;
if(!b)
b = 1;
if(n == 0)
return a;
return F(n-1, b, a+b);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment