3 lines
61 B
Text
3 lines
61 B
Text
factorial = { x |
|
|
true? x == 0 1 { x * factorial(x - 1)}
|
|
}
|
factorial = { x |
|
|
true? x == 0 1 { x * factorial(x - 1)}
|
|
}
|