4 lines
82 B
Text
4 lines
82 B
Text
(de mean (Lst)
|
|
(if (atom Lst)
|
|
0
|
|
(/ (apply + Lst) (length Lst)) ) )
|