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

7 lines
133 B
Text

class MAIN is
main is
x ::= #VEC(|1.0, 3.0, -5.0|);
y ::= #VEC(|4.0, -2.0, -1.0|);
#OUT + x.dot(y) + "\n";
end;
end;