mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-17 15:54:03 +00:00
12 lines
161 B
Kotlin
12 lines
161 B
Kotlin
// IS_APPLICABLE: false
|
|
fun test(n: Int): String {
|
|
var res: String
|
|
|
|
<caret>if (n == 1) {
|
|
"one"
|
|
} else {
|
|
"two"
|
|
}
|
|
|
|
return res
|
|
} |