Skip to main content
Adds two numbers and emits the sum as a decimal. Pair it with Subtract, Multiply, or Divide to build longer arithmetic chains.

Configuration

  • X — first addend. Wire the input port, or type a literal in the inspector. nil is treated as 0.
  • Y — second addend. Same rules as X.

List behaviour

  • Both operands as same-length lists: element-wise addition.
  • One list, one scalar: the scalar is added to each element.
  • Two scalars: ordinary addition.
  • Mismatched list lengths raise an error.

Ports