trathschlag
fun test() { tailrec suspend fun Int.handle(): Int { return when { this <= 0 -> 0 else -> (this - 1).handle() } } }
Ivan Kubyshkin [JetBrains]
A modern programming language that makes developers happier.