Skip to main content
Multiplies two numbers and emits the product as a decimal. Pair with Add, Subtract, or Divide to build longer arithmetic chains.

Configuration

  • X — first factor. Wire the input port, or type a literal in the inspector. nil is treated as 1, so passing nil leaves the other operand unchanged.
  • Y — second factor. Same rules as X.

List behaviour

Same-length lists multiply element-wise. A scalar multiplies each element of a list. Mismatched list lengths raise an error.

Ports