Skip to content

Instantly share code, notes, and snippets.

@brikis98
Last active December 17, 2015 22:39
def buildSentence(maybeName: String): String = {
val nameOpt = Option(maybeName)
val hello = "Hello"
val sentenceOpt = nameOpt.map(name => hello + " " + name)
sentenceOpt.getOrElse(hello)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment