Skip to content

Instantly share code, notes, and snippets.

@amirkarimi
Last active January 3, 2018 21:47
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 amirkarimi/4df63c934de938bfef6f9d560ce32bf9 to your computer and use it in GitHub Desktop.
Save amirkarimi/4df63c934de938bfef6f9d560ce32bf9 to your computer and use it in GitHub Desktop.
Don’t listen to them, learn Cats this way
def getUser(id: Int): Option[User] = ???
getUser(10) match {
case None => println(“User not found”)
case Some(user) => println(s”User: $user”)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment