6 lines
99 B
Plaintext
Vendored
6 lines
99 B
Plaintext
Vendored
fun a(x: Int) {
|
|
val t = if (x > 0) {
|
|
val i = x + x
|
|
i - 1
|
|
} else x * x + 1
|
|
} |