Run »
fun main() { val time = 20 val greeting = if (time < 18) { "Good day." } else { "Good evening." } println(greeting) }
Good evening.