Created
August 3, 2017 02:14
-
-
Save LeeKahSeng/d32ecf9e3e4ecd8e87a46bfcf27797f4 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
var testStruct = MyStruct() | |
testStruct.myVar1 = "test var1" | |
testStruct.myVar2 = "test var2" | |
print(testStruct.myVar1) // "test var1" | |
print(testStruct.myVar2) // "test var2" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment