Inside a function

Report a typo

You have the following code:

fun first() {
    fun second() {
        return first()
    }
}

fun main() {
    first()
}

What is the scope of the function second()?

Select one option from the list
___

Create a free account to access the full topic