Skip to content

Instantly share code, notes, and snippets.

@Ochornma
Created May 15, 2021 14:09
Show Gist options
  • Save Ochornma/f744f84e16cb485762e1b58065901df4 to your computer and use it in GitHub Desktop.
Save Ochornma/f744f84e16cb485762e1b58065901df4 to your computer and use it in GitHub Desktop.
let fullName: (String, String) -> String = { (firstName, lastName) in
return "The Full Name is \(firstName) \(lastName)"
}
print(fullName("Promise", "Ochornma"))
//The Result is:
//The Full Name is Promise Ochornma
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment