RosettaCodeData/Task/Averages-Arithmetic-mean/PicoLisp/averages-arithmetic-mean.l

5 lines
82 B
Text
Raw Permalink Normal View History

2013-04-10 14:58:50 -07:00
(de mean (Lst)
(if (atom Lst)
0
(/ (apply + Lst) (length Lst)) ) )