Sign in
◑
Theme
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
699829ccb3e80dbb53c10cccdf1e50f06a5c5346
/
.
/
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"
}