shortArrayOf

Returns an array containing the specified Short numbers.

expect fun shortArrayOf(vararg elements: Short): ShortArray(source)
val shortArray = shortArrayOf(5s, 10s, 15s)
println(shortArray.joinToString())

Source