Closed JohnKnust closed 6 years ago
Hi!
When I use let size = Size(width: 500, height: 348) the properties width and height are inaccessible. Please make them public to:
let size = Size(width: 500, height: 348)
public struct Size { public var width: Int public var height: Int public init(width: Int, height: Int) { self.width = width self.height = height } }
Just hand in a Pull Request.
This is fixed.
Hi!
When I use
let size = Size(width: 500, height: 348)
the properties width and height are inaccessible. Please make them public to: