mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-08 15:53:19 +00:00
9 lines
199 B
Kotlin
Vendored
9 lines
199 B
Kotlin
Vendored
package library.sample
|
|
|
|
public fun pairAdd(p: Pair<Int, Int>): Int = p.first + p.second
|
|
|
|
public fun pairMul(p: Pair<Int, Int>): Int = p.first * p.second
|
|
|
|
public data class IntHolder(val value: Int)
|
|
|