mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-17 15:54:03 +00:00
9 lines
131 B
Plaintext
Vendored
9 lines
131 B
Plaintext
Vendored
// SUGGESTED_NAMES: i, getY
|
|
// SIBLING:
|
|
fun main(args: Array<String>) {
|
|
val x = i()
|
|
val y = i()
|
|
}
|
|
|
|
private fun i() = 1 + 1
|