1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
package foo abstract class Apple { protected var name: String = "foo" internal var weight: Int = 180 var rating: Int = 10 private var color: String = "red" companion object { @JvmStatic val code : Int = 123456 } }