Created
August 3, 2017 02:04
-
-
Save LeeKahSeng/e6c48fbaf13b32dcf10b7916be3f8896 to your computer and use it in GitHub Desktop.
This file contains 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
protocol MyProtocol { | |
var myVar1: String { get set } | |
var myVar2: String { get } | |
} | |
struct MyStruct: MyProtocol { | |
var myVar1 = "" | |
var myVar2 = "" | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment