Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
9fc4d94d04f972782fee2dc5b3b25d052d88601a
/
.
/
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
)