Skip to content

Instantly share code, notes, and snippets.

@dgadiraju
Created May 7, 2017 01:56
Show Gist options
  • Save dgadiraju/ad6a6ac83eee2938ce5ef19af402e8fa to your computer and use it in GitHub Desktop.
Save dgadiraju/ad6a6ac83eee2938ce5ef19af402e8fa to your computer and use it in GitHub Desktop.
def factr(i: Int): Int = if(i==1) 1 else i * factr(i-1)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment