iOS Swift - Swift Language Essentials
What is wrong with this protocol conformance?
protocol Describable {
func describe() -> String
}
struct Item: Describable {
func describe() {
print("Item description")
}
}