Medial just got its first office in Bengaluru! Things go only up from here. The view is great too! Wishing to meet users here someday :D Thanks for all your blessings! 🙏💜
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)
}