Multiply: Difference between revisions

From The K Language Wiki
Content added Content deleted
m (Lowercase title)
("Paragraph cleanup")
 
(4 intermediate revisions by the same user not shown)
Line 1: Line 1:
{{lowercase title}}
{{primitive|x*y}}
{{primitive|x*y}}

The '''multiply''' function is generally denoted by <code>*</code>.
The '''multiply''' function is generally denoted by <code>*</code>.


Line 14: Line 14:
27 0)
27 0)
</pre>
</pre>

[[Category:Verbs]]
[[Category:Operator verbs]]
[[Category:Primitives]]

Latest revision as of 07:59, 9 July 2022

Multiply
x*y

The multiply function is generally denoted by *.

The multiply primitive is fully atomic.

 1*2
2

 1 2 3+4 5 6
4 10 18

 ((23;45);(3;4))*((45;78);(9;0))
(1035 3510
 27 0)