mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-12 08:31:28 +00:00
7 lines
90 B
Plaintext
Vendored
7 lines
90 B
Plaintext
Vendored
// OPTION: 1
|
|
fun foo(n: Int): Int {
|
|
return if (n > 0) {
|
|
n + 10
|
|
<caret> }
|
|
}
|