Some useful operations like + and *

add(x, y)

multiply(x, y)

Arguments

x

Numeric.

y

Numeric.

Value

The sum or the product of x and y.

Examples

add(4, 7)
#> [1] 11