where is the result of the July showcase?
ek chhota sa kaam nhi ho paa rha hai medial team se(medial subscription time pe debit ho jata hai).
medial kindly hire more people to execute it.
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)
}