mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-16 15:53:55 +00:00
7 lines
100 B
Plaintext
7 lines
100 B
Plaintext
// SIBLING:
|
|
fun foo(a: Int, b: Int): Int = i(a, b)
|
|
|
|
fun i(a: Int, b: Int): Int {
|
|
return a + b
|
|
}
|