RosettaCodeData/Task/Averages-Arithmetic-mean/PicoLisp/averages-arithmetic-mean.l
2013-04-10 14:58:50 -07:00

4 lines
82 B
Text

(de mean (Lst)
(if (atom Lst)
0
(/ (apply + Lst) (length Lst)) ) )