Skip to content

Instantly share code, notes, and snippets.

@Saheb
Created November 26, 2015 19:24
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Saheb/8969ba1550ca432060b4 to your computer and use it in GitHub Desktop.
Save Saheb/8969ba1550ca432060b4 to your computer and use it in GitHub Desktop.
def fact_tail(n:Int, holder:Int):Int = n match
{
case 1 => holder
case _ => fact_tail(n-1, n*holder)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment