like ``` val short1: Short = 0 //.... val array =...
# getting-started
s
like
Copy code
val short1: Short = 0
//....
val array = ByteBuffer.allocate(16).putShort(short1)
//......
.array()
😊 1