8 lines
98 B
Kotlin
8 lines
98 B
Kotlin
class Inline {
|
|
|
|
inline fun calc(s: (Int) -> Int, p: Int) : Int {
|
|
return s(p)
|
|
}
|
|
}
|
|
|