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/bbbc0ca1f10c82559862 to your computer and use it in GitHub Desktop.
Save Saheb/bbbc0ca1f10c82559862 to your computer and use it in GitHub Desktop.
def fib(n : Int):Int = n match
{
case 0 => 0
case 1 => 1
case _ => fib(n-1) + fib(n-2)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment