Skip to content

Instantly share code, notes, and snippets.

@superarts
Created May 7, 2019 14:10
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save superarts/19ca0f92b10ef01b268e3b6f4a00afb2 to your computer and use it in GitHub Desktop.
Save superarts/19ca0f92b10ef01b268e3b6f4a00afb2 to your computer and use it in GitHub Desktop.
`static func` in `struct` is not pure
struct TestStruct {
static var staticVar = 1
static func staticFunc() {
staticVar = 2
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment