Explore Library
KotlinIntroduction & Core Concepts

50 items

Code QuizBeginner

String template property

Learn when a string template needs curly braces.

Codekotlin
fun main() {
    val name = "Kotlin"
    println("Length is $name.length")
}

What is the bug in this code?