Files
kotlin-fork/idea/resources/intentionDescriptions/WhenToIfIntention/before.kt.template
T
2013-05-15 12:57:53 +04:00

11 lines
126 B
Plaintext

when (n) {
1 -> {
res = "one"
}
2 -> {
res = "two"
}
else -> {
res = "???"
}
}