Learning Kotlin – Part 3 – ranges

After Learning Kotlin  –  Part 1 and Learning Kotlin – Part 2 we will now dive into the ranges. One nice little feature is the .. syntax: you can generate an IntRange object just by specifying the start and the end element: val oneTo10 = 1..10 You can even use values for the start and…