RosettaCodeData/Task/Averages-Arithmetic-mean/Oforth/averages-arithmetic-mean.oforth
2018-06-22 20:57:24 +00:00

4 lines
86 B
Text

: avg ( x -- avg )
x sum
x size dup ifZero: [ 2drop null ] else: [ >float / ]
;