Anywhere ``` class MyClass(field: String) { va...
# getting-started
e
Anywhere
Copy code
class MyClass(field: String) {
    val myProperty = field // here
    init {
        println(field) // or here
    }
}