Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
6330def4271b547b5c7db5f9759e387de2908e94
/
.
/
compiler
/
testData
/
codegen
/
box
/
controlStructures
/
bottles.kt
blob: 2d37659384362407b9ca92159c877b7a9a90aef7 [
file
] [
log
] [
blame
]
fun box
():
String
{
var
bottles
=
99
while
(
bottles
>
0
)
{
// System.out.println("bottles of beer on the wall");
bottles
-=
1
bottles
--
}
return
if
(
bottles
==
-
1
)
"OK"
else
"Fail $bottles"
}