Explore Library
KotlinIntroduction & Core Concepts

50 items

Code QuizBeginner

val vs var

Understand why reassigning a val causes a compile error.

Codekotlin
fun main() {
    val count = 10
    count = 20
    println(count)
}

What is the bug in this code?