Created
April 7, 2017 08:32
-
-
Save rcerrejon/433bbdffdb96458e9a6e85a45f48bc2a to your computer and use it in GitHub Desktop.
Constants
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
// Between import and class | |
struct Constants { | |
static var stringVar = "foo" | |
static var intVar = 34 | |
} | |
// Call it like: | |
Constants.stringVar = "bar" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment