Swift - Functions
How can you modify this Swift function to accept both a variadic list of strings and an optional prefix string?
func printPrefixed(_ strings: String...) {
for s in strings {
print(s)
}
}