2 lines
61 B
Text
2 lines
61 B
Text
|
|
factorial: n = (|r <- 1| 1 to: n + 1 Do: [|:i| r: r * i]. r)
|