Sign in
android
/
platform
/
external
/
jetbrains
/
kotlin
/
v1.3.20
/
.
/
compiler
/
testData
/
cli
/
js
/
LibraryExample.kt
blob: 28569346084a073514df0f62c4c1491484f8ceae [
file
] [
log
] [
blame
]
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
)