read <https://kotlinlang.org/docs/reference/ranges...
# announcements
j
l
take - Returns a sequence containing first [n] elements 😅
m
But
31..30
is empty. You have to use
downto
in this case (as explained in @jw link). Like
31 downto 30
.
👍 1