Working with Ranges in Kotlin: Integers, Characters, and Custom Steps
A Range in Kotlin is a closed interval between two ednpoints. It is created with the .. operator and supports the membership checks in and !in. Any value that is greater than or equal to the lower bound and less than or equal to the upper bound is considered part of the range. val lowercase = 'a'..'...