Skip to content

Instantly share code, notes, and snippets.

@alonecuzzo
Created November 30, 2013 21:20
Show Gist options
  • Save alonecuzzo/7724648 to your computer and use it in GitHub Desktop.
Save alonecuzzo/7724648 to your computer and use it in GitHub Desktop.
fact(i)
{
return i*fact(i-1);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment