Skip to content

Instantly share code, notes, and snippets.

@okaminu
Created October 1, 2020 13:51
Show Gist options
  • Save okaminu/8b8e4b64893bd291bccf32cc8400e705 to your computer and use it in GitHub Desktop.
Save okaminu/8b8e4b64893bd291bccf32cc8400e705 to your computer and use it in GitHub Desktop.
object Greeter {
def greet(likeAPirate: Boolean, age: Some[Int]): String =
if (likeAPirate && age.nonEmpty) {
if (age.get >= 18) "Care to join for a bottle of rum ?" else "Ahoy"
} else "Hello"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment