Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
2f8b8915520217c656f00750d7faa239c6233ece
/
.
/
compiler
/
testData
/
codegen
/
script
/
topLevelFunction.kts
blob: 1592b7f22b5e5a9dce80273b3e192b656bf8560c [
file
]
// expected: rv: 3628800
fun factorial
(
n
:
Int
):
Int
{
var
product
=
1
for
(
i
in
1.
.
n
)
{
product
*=
i
}
return
product
}
val rv
=
factorial
(
10
)