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

7 lines
94 B
Plaintext

if (n == 1) {
res = "one"
} else if (n == 2) {
res = "two"
} else {
res = "???"
}