Created
April 30, 2020 05:29
-
-
Save akshitzaveri/7dcbbdc1e9311cbd634147dde7d019a4 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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