Skip to content

Instantly share code, notes, and snippets.

@Akii
Created August 4, 2015 18:04
Show Gist options
  • Save Akii/a3eb1a4b68b46d5894db to your computer and use it in GitHub Desktop.
Save Akii/a3eb1a4b68b46d5894db to your computer and use it in GitHub Desktop.
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