Read-only stored properties in Swift

class FilmList {
    private(set) var count: Int
    
    init() {
        count = 10;
    }
}