Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
6f1b95d296c5592d3a3e71cc638994fa2ba4e4f7
/
.
/
compiler
/
testData
/
codegen
/
script
/
topLevelFunction.kts
blob: 4b13ebc558a0ea2a10302273c277160ec190ba4d [
file
]
// JVM_ABI_K1_K2_DIFF: KT-63960, KT-63963
// expected: rv: 3628800
fun factorial
(
n
:
Int
):
Int
{
var
product
=
1
for
(
i
in
1.
.
n
)
{
product
*=
i
}
return
product
}
val rv
=
factorial
(
10
)