Skip to content

Instantly share code, notes, and snippets.

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