Back to tasksGet help with live coding in real time with Sobes Copilot
Junior — Senior
42
Что будет выведено в консоль (пример 2)
Companies where asked:
АльфаБанк
Task condition
Определите, какой текст появится в выводе программы и объясните, почему именно он выводится.
protocol Test {
func test()
}
extension Test {
func test() { print("A") }
}
struct Cat: Test {
func test() { print("C") }
}
var obj: Test = Cat()
obj.test()