Woke up at 5 am and started writing code because I dreamt a feature for
@soshalsapp
in my sleep. This is kinda fun. Must try.
14 replies20 likes
Yasir Alam
Stealth • 9m
Question: What is the output of the following Kotlin code snippet?
fun main() {
val list = mutableListOf(1, 2, 3, 4, 5)
val result = list.fold(5) { acc, num -> acc * num }
println(result)
}