Swift - Functions
Given this function:
Which call will cause a compile-time error?
func configure(button title: String, color: String) {
print("Button titled \(title) with color \(color) configured.")
}Which call will cause a compile-time error?
