RosettaCodeData/Task/Vector/Maple/vector-2.maple
2023-07-01 13:44:08 -04:00

7 lines
73 B
Text

a := MyVector(<3|4>):
b := MyVector(<5|4>):
a + b;
a - b;
a * 5;
a / 5;