5 lines
135 B
Text
5 lines
135 B
Text
; find the sum, with seed:0 (default)
|
|
print fold [1 2 3 4] => add
|
|
|
|
; find the product, with seed:1
|
|
print fold [1 2 3 4] .seed:1 => mul
|