In Kotlin can I create a range that counts backwards? December 27, 2022 by Tarik Use downTo as in: for (n in 100 downTo 1) { // }