RosettaCodeData/Task/Dot-product/LFE/dot-product.lfe
2023-07-01 13:44:08 -04:00

3 lines
84 B
Text

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