18 lines
253 B
Kotlin
18 lines
253 B
Kotlin
package test
|
|
|
|
class ClassVal() {
|
|
var property1 = 1
|
|
get
|
|
|
|
internal var property2 = 1
|
|
get
|
|
|
|
private var property3 = Object()
|
|
get
|
|
|
|
protected var property4: String = ""
|
|
get
|
|
|
|
public var property5: Int = 1
|
|
get
|
|
} |