Структуры (записи)

//In Kotlin there are no structures
class BoldLine {
    val lineWidth = 10
}

val boldLine = BoldLine()
val width = boldLine.lineWidth
//width is 10

println("width is $width")