//In Kotlin there are no structuresopen class ColorPoint(var x: Int, var y: Int) { var color = "no color"}val point = ColorPoint(3, 7)point.color = "Green"