RosettaCodeData/Task/Averages-Arithmetic-mean/Slate/averages-arithmetic-mean.slate
Ingy döt Net d066446780 langs a-z
2013-04-10 22:43:41 -07: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: {}.