mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-17 15:54:03 +00:00
12 lines
161 B
Kotlin
Vendored
12 lines
161 B
Kotlin
Vendored
val a = readLine()
|
|
|
|
val b = when(a) {
|
|
"abc" -> 1
|
|
"def", "ghi" -> 2
|
|
else -> 3
|
|
}
|
|
|
|
when(a) {
|
|
"abc1" -> println(1)
|
|
"def1", "ghi1" -> println(2)
|
|
} |