Swift bergabung dengan dua string

var greet = "Hello "
var name = "Jack"

// using the append() method
greet.append(name)
print(greet)
SAMER SAEID