Looping via recursion is also possible in Kotlin as in most programming languages.
fun factorial(n: Long): Long = if (n == 0) 1 else n * factorial(n - 1)
println(factorial(10)) // 3628800
In the example above, the factorial
function will be called repeatedly by itself until the given condition is met.