Multiply: Difference between revisions

From The K Language Wiki
Content added Content deleted
("Better category ordering, add redirects to categories, fix pseudo-adverb categories")
("Paragraph cleanup")
 
Line 1: Line 1:
{{primitive|x*y}}
{{primitive|x*y}}

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



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)