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