Sign in
◑
Theme
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
1f76d39e66b4ee8544feac93e4afd8e61ef9610a
/
.
/
compiler
/
testData
/
cli
/
js
/
LibraryExample.kt
blob: 28569346084a073514df0f62c4c1491484f8ceae [
file
]
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
)