4 lines
96 B
Kotlin
4 lines
96 B
Kotlin
fun foo(a:Int):Int = a
|
|
fun bar(a:Int):Int = a
|
|
|
|
fun sumFooBar(a:Int, b:Int):Int = foo(a) + bar(b) |