2d1abda9a1
Also includes minor test fix, related to KT-14900
7 lines
125 B
Kotlin
Vendored
7 lines
125 B
Kotlin
Vendored
fun test(n: Int): String {
|
|
var res: String = "!"
|
|
|
|
<caret>if (n == 1) res += "one" else res += "two"
|
|
|
|
return res
|
|
} |