Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
9fc4d94d04f972782fee2dc5b3b25d052d88601a
/
.
/
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"
}