Last active
July 23, 2016 00:32
-
-
Save capnslipp/c166e3fb51112f0c6551d5ea3626b2bb to your computer and use it in GitHub Desktop.
Revisions
-
capnslipp revised this gist
Jul 23, 2016 . No changes.There are no files selected for viewing
-
capnslipp revised this gist
Jul 23, 2016 . 2 changed files with 5 additions and 5 deletions.There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,5 @@ public struct GlobalsStruct { public static let aValue = 5 private init() {} } 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 charactersOriginal file line number Diff line number Diff line change @@ -1,11 +1,6 @@ import Foundation let gs = GlobalsStruct() print(gs) -
capnslipp renamed this gist
Jun 26, 2016 . 1 changed file with 0 additions and 0 deletions.There are no files selected for viewing
File renamed without changes. -
capnslipp created this gist
Jun 26, 2016 .There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,14 @@ import Foundation struct GlobalsStruct { static let aValue = 5 private init() {} } let gs = GlobalsStruct() print(gs) print(GlobalsStruct.aValue) print(gs.dynamicType.aValue)