Files
kotlin-fork/idea/resources/intentionDescriptions/IntroduceWhenSubjectIntention/before.kt.template
T

11 lines
132 B
Plaintext

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