BWT, Kotlin does not do defensive copy here: ``` f...
# announcements
k
BWT, Kotlin does not do defensive copy here:
Copy code
fun main(args: Array<String>) {
    val sign = Sign(byteArrayOf(1, 2, 3))
    sign.hash[0] = 4
    println(sign.hash[0])
}