Created
May 15, 2021 14:14
-
-
Save Ochornma/6bb5bb5a0af470a960e5562c9f556854 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
let fullName: (String, String) -> String = { | |
return "The Full Name is \($0) \($1)" | |
} | |
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