Skip to content

Instantly share code, notes, and snippets.

@haranicle
Created February 6, 2016 05:32
Show Gist options
  • Save haranicle/0d9a25da1dd665816611 to your computer and use it in GitHub Desktop.
Save haranicle/0d9a25da1dd665816611 to your computer and use it in GitHub Desktop.
letなstruct #CodePiece #cswift
struct Location {
var x:Int
var y:Int
}
var l1 = Location(x: 10, y: 20)
l1.x = 30
let l2 = Location(x: 10, y: 20)
l2.x = 30 // Cannot assign to property
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment