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

5 lines
82 B
Text
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
(de mean (Lst)
(if (atom Lst)
0
(/ (apply + Lst) (length Lst)) ) )