You have the following code:
fun first() {
fun second() {
return first()
}
}
fun main() {
first()
}
What is the scope of the function second()?
You have the following code:
fun first() {
fun second() {
return first()
}
}
fun main() {
first()
}
What is the scope of the function second()?
Create a free account to access the full topic