RosettaCodeData/Task/Dot-product/DWScript/dot-product-2.dw

5 lines
78 B
Text
Raw Permalink Normal View History

2013-04-10 16:57:12 -07:00
var a := Vector(1, 3, -5, 0);
var b := Vector(4, -2, -1, 0);
PrintLn(a * b);