Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
9fc4d94d04f972782fee2dc5b3b25d052d88601a
/
.
/
compiler
/
testData
/
codegen
/
box
/
controlStructures
/
doWhileFib.kt
blob: 088f74cb660a328d75b726a879724f8808942139 [
file
]
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"
}