Last active
July 23, 2016 00:32
-
-
Save capnslipp/c166e3fb51112f0c6551d5ea3626b2bb to your computer and use it in GitHub Desktop.
Swift struct private init() test
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
public struct GlobalsStruct { | |
public static let aValue = 5 | |
private init() {} | |
} |
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
import Foundation | |
let gs = GlobalsStruct() | |
print(gs) | |
print(GlobalsStruct.aValue) | |
print(gs.dynamicType.aValue) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment