Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
fae15b3fc4205675bfb51513d6068f83490926d3
/
.
/
compiler
/
testData
/
codegen
/
box
/
controlStructures
/
doWhileFib.kt
blob: 088f74cb660a328d75b726a879724f8808942139 [
file
] [
log
] [
blame
]
fun box
():
String
{
var
fx
=
1
var
fy
=
1
do
{
var
tmp
=
fy
fy
=
fx
+
fy
fx
=
tmp
}
while
(
fy
<
100
)
return
if
(
fy
==
144
)
"OK"
else
"Fail $fx $fy"
}