Skip to content

Instantly share code, notes, and snippets.

@ashfurrow
Created October 24, 2015 14:56
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 ashfurrow/b10cde52162b0b7c9851 to your computer and use it in GitHub Desktop.
Save ashfurrow/b10cde52162b0b7c9851 to your computer and use it in GitHub Desktop.
class MyClass {
var example: String = ""
}
let a = MyClass()
// The state of a is that example is ""
a.example = "hi"
// The state has changed, so that example is "hi"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment