5 lines
106 B
Kotlin
5 lines
106 B
Kotlin
package tinyvm
|
|
|
|
import java.util.HexFormat
|
|
|
|
fun ByteArray.toHex(): String = HexFormat.of().formatHex(this) |