How to use Java or Kotlin reflection to access the value of a private variable in the Main.kt file?
package com.example
private val myName = "abc"
fun main() {
println(myName)
}
How to use Java or Kotlin reflection to access the value of a private variable in the Main.kt file?
package com.example
private val myName = "abc"
fun main() {
println(myName)
}