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