Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save akshitzaveri/8430157a1239960722b656682522d24f to your computer and use it in GitHub Desktop.
Save akshitzaveri/8430157a1239960722b656682522d24f to your computer and use it in GitHub Desktop.
import Foundation
protocol Animal {
func walk()
func run()
}
extension Animal {
func run() {
}
}
class Elephant: Animal {
func walk() {
print("I am walking")
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment