Posts by Fernando Crelick • 13 points
1 post
-
1
votes2
answers69
viewsQ: What is the difference between these two statements?
Let’s say I created a struct point that gives a certain point in a "map". struct Ponto { let x: Int let y: Int init(x: Int, y: Int) { self.x = x self.y = y } What would be the difference between…