Created
August 4, 2015 18:04
-
-
Save Akii/a3eb1a4b68b46d5894db to your computer and use it in GitHub Desktop.
This file contains hidden or 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 tail[A](l: List[A]): List[A] = l match { | |
case Nil => Nil | |
case Cons(_, t) => t | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment