kotlin loop

fun main() {
    // Step 1: Define the range for the loop using the 'until' keyword
    for (i in 1 until 5) {
        // Step 2: Loop executes for each value of 'i' in the specified range
        println("Current value of i: $i")
    }
}