What will the following program output?
var counter = 3;
fun main() {
if(counter == 0) return
counter = counter - 1
main()
print(0)
}What will the following program output?
var counter = 3;
fun main() {
if(counter == 0) return
counter = counter - 1
main()
print(0)
}Create a free account to access the full topic