Created
February 6, 2016 05:32
-
-
Save haranicle/0d9a25da1dd665816611 to your computer and use it in GitHub Desktop.
letなstruct #CodePiece #cswift
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
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