7f627ab480
These are mostly mechanical changes.
13 lines
162 B
Kotlin
Vendored
13 lines
162 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)
|
|
}
|