5 lines
69 B
Kotlin
5 lines
69 B
Kotlin
package foo
|
|
|
|
inline fun sum(a: Int, b: Int): Int {
|
|
return a + b
|
|
} |