Skip to content

Instantly share code, notes, and snippets.

@akshitzaveri
Created April 30, 2020 05:24
Show Gist options
  • Save akshitzaveri/61fe9a1861d6668c245145ecbe5193db to your computer and use it in GitHub Desktop.
Save akshitzaveri/61fe9a1861d6668c245145ecbe5193db to your computer and use it in GitHub Desktop.
import Foundation
protocol Animal {
func walk()
func run()
}
class Elephant: Animal {
func walk() {
print("I am walking")
}
func run() {
print("I can not run")
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment