Created
April 30, 2020 05:33
-
-
Save akshitzaveri/8430157a1239960722b656682522d24f 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 | |
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