Skip to content

Instantly share code, notes, and snippets.

@jmaciasluque
Created August 12, 2015 08:01
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 jmaciasluque/98ab82e81613247f2e34 to your computer and use it in GitHub Desktop.
Save jmaciasluque/98ab82e81613247f2e34 to your computer and use it in GitHub Desktop.
private def exercise2() {
List("alpha", "bravo", "charlie", "delta", "echo", "foxtrot")
.filterNot(_.length % 2 != 0)
.foreach(println)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment