meaning this code only works in java but not in ko...
# getting-started
w
meaning this code only works in java but not in kotlin?
Copy code
for (i in byteArray.indices) {
        result += Integer.toString((byteArray[i] and 0xFF) + 0x100, 16).substring(1)
    }