= when {
num >= 7 -> 1
num in 5 until 7 -> 2
else -> 3
}
num in 5 until 7 -> 2 👇 num >= 5 -> 2
Обсуждают сегодня