Created
November 26, 2015 19:24
-
-
Save Saheb/bbbc0ca1f10c82559862 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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