Простые типы / Строки

//Empty strings
val someEmptyString = ""

if (someEmptyString.isEmpty()) {
    println("string is empty")
}