In a list of Kotlin language proposals there was a...
# random
m
In a list of Kotlin language proposals there was an array/list slicing, e. g.
array[1:5]
. As it turns out, similar things can be achieved with current Kotlin syntax:
array[1..5]
.
👍 3