RosettaCodeData/Task/Dot-product/LFE/dot-product.lfe
2016-12-05 23:44:36 +01:00

3 lines
84 B
Text

(defun dot-product (a b)
(: lists foldl #'+/2 0
(: lists zipwith #'*/2 a b)))