#24
Sum It All Up
 

Difficulty:Easy
Topics:seqs


Write a function which returns the sum of a sequence of numbers.
test not run
(= (__ [1 2 3]) 6)
test not run
(= (__ (list 0 -2 5 5)) 8)
test not run
(= (__ #{4 2 1}) 7)
test not run
(= (__ '(0 0 -1)) -1)
test not run
(= (__ '(1 10 3)) 14)


Code which fills in the blank: