3 lines
125 B
Text
3 lines
125 B
Text
// Build factorial function with using a range and product function.
|
|
factorial2[x] := product[1 to x]
|
|
println[factorial2[5]]
|