Skip to content

Instantly share code, notes, and snippets.

@metasim
Created November 12, 2015 15:41
Show Gist options
  • Select an option

  • Save metasim/aba8f23bad0ba89a8894 to your computer and use it in GitHub Desktop.

Select an option

Save metasim/aba8f23bad0ba89a8894 to your computer and use it in GitHub Desktop.
Birthday wishes from a colleague.
scala> (1 to 4).map { i => "Happy Birthday " + (if (i == 3) "dear Simeon" else "to You") }.foreach { println }
Happy Birthday to You
Happy Birthday to You
Happy Birthday dear Simeon
Happy Birthday to You
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment