Skip to content

Instantly share code, notes, and snippets.

@PavelGnatyuk
Last active July 3, 2018 16:25
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 PavelGnatyuk/d5215bd19d5894fa1277e2f41d2c9211 to your computer and use it in GitHub Desktop.
Save PavelGnatyuk/d5215bd19d5894fa1277e2f41d2c9211 to your computer and use it in GitHub Desktop.
func goodMorning(morning: Bool, whom: () -> String) {
if morning {
print("Good morning, \(whom())")
}
}
func giveAname() -> String {
print("giveAname() is called")
return "Robert"
}
goodMorning(morning: false, whom: giveAname())
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment