blaupause.add

blaupause.add(a, b)

Adds two numbers.

Function to add two numbers.

Parameters
  • a (numbers.Real) – First operand.

  • b (numbers.Real) – Second operand.

Returns

Sum of a and b.

Return type

numbers.Real

Examples

>>> import blaupause
>>> blaupause.add(1, 2)
3