Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save akshitzaveri/7dcbbdc1e9311cbd634147dde7d019a4 to your computer and use it in GitHub Desktop.
Save akshitzaveri/7dcbbdc1e9311cbd634147dde7d019a4 to your computer and use it in GitHub Desktop.
import Foundation
@objc protocol Animal {
func walk()
@objc optional func run()
}
class Elephant: NSObject, 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