mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-18 15:54:05 +00:00
11 lines
78 B
Kotlin
11 lines
78 B
Kotlin
fun foo() {
|
|
foo(
|
|
1 + 1
|
|
)
|
|
}
|
|
|
|
fun foo(i: Int) {
|
|
}
|
|
|
|
// 2 5 8
|