Run ❯
Get your
own
website
❯
Run Code
Ctrl+Alt+R
Change Orientation
Ctrl+Alt+O
Change Theme
Ctrl+Alt+D
Go to Spaces
Ctrl+Alt+P
protocol Speaker { func speak() } struct Dog: Speaker { func speak() { print("Woof") } } struct Cat: Speaker { func speak() { print("Meow") } } let speakers: [Speaker] = [Dog(), Cat()] speakers.forEach { $0.speak() }