Sign in
◑
Theme
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
ed7ee67e4e1513f9b3ba9587b6d6e950e7a1da7f
/
.
/
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
)