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