RosettaCodeData/Task/Dot-product/Smalltalk/dot-product.st
Ingy döt Net 764da6cbbb CDE
2013-04-10 16:57:12 -07:00

12 lines
206 B
Smalltalk

Array extend
[
* anotherArray [
|acc| acc := 0.
self with: anotherArray collect: [ :a :b |
acc := acc + ( a * b )
].
^acc
]
]
( #(1 3 -5) * #(4 -2 -1 ) ) printNl.