Look at the code below:
fun main() {
if(true) {
val eight = 8
} else {
// ...
}
}
What is the scope of the variable eight?
Look at the code below:
fun main() {
if(true) {
val eight = 8
} else {
// ...
}
}
What is the scope of the variable eight?
Create a free account to access the full topic