Swift - Functions
What will be the output of this Swift code?
func printAll(_ strings: String...) {
for str in strings {
print(str)
}
}
printAll("apple", "banana", "cherry")