Explore Library
KotlinIntroduction & Core Concepts

50 items

Code QuizBeginner

Char literals

Learn the difference between Char and String literals.

Codekotlin
fun main() {
    val letter: Char = "A"
    println(letter)
}

What is the bug in this code?