Skip to content

Instantly share code, notes, and snippets.

@BradB132
Last active August 29, 2015 14:22
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 BradB132/bb35171b21d3e7d39668 to your computer and use it in GitHub Desktop.
Save BradB132/bb35171b21d3e7d39668 to your computer and use it in GitHub Desktop.
FirstAppInSwift-8
public class MyClass {
private(set) public var myProperty:Int = 0
}
//Here’s some code that tests our new property
let myObj = MyClass()
println(myObj.myProperty) //this line compiles
myObj.myProperty = 5 //this causes a compile error
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment