RosettaCodeData/Task/Averages-Arithmetic-mean/Slate/averages-arithmetic-mean.slate
2023-07-01 13:44:08 -04:00

2 lines
232 B
Text

[|:list| (list reduce: #+ `er ifEmpty: [0]) / (list isEmpty ifTrue: [1] ifFalse: [list size])] applyWith: #(3 1 4 1 5 9).
[|:list| (list reduce: #+ `er ifEmpty: [0]) / (list isEmpty ifTrue: [1] ifFalse: [list size])] applyWith: {}.