Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
ed7ee67e4e1513f9b3ba9587b6d6e950e7a1da7f
/
.
/
compiler
/
testData
/
codegen
/
box
/
functions
/
ea33909.kt
blob: f4022e8ba28eb3ce13374f603cc86c5877f3d50f [
file
]
fun box
():
String
{
return
justPrint
(
9.compareTo
(
4
))
}
fun justPrint
(
value
:
Int
):
String
{
return
if
(
value
>
0
)
"OK"
else
"Fail $value"
}