Skip to content

Instantly share code, notes, and snippets.

@Ochornma
Last active May 15, 2021 14:10
Show Gist options
  • Save Ochornma/6e35ab446cf3371c6afb7b238713aefd to your computer and use it in GitHub Desktop.
Save Ochornma/6e35ab446cf3371c6afb7b238713aefd to your computer and use it in GitHub Desktop.
func fullName(firstName: String, lastName: String) -> String{
return "The Full Name is \(firstName) \(lastName)"
}
print(fullName(firstName: "Promise", lastName: "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