R/add.R
add.Rd
Add two numbers
add(x, y)
The first number to add.
The second number to add.
The sum of two numbers
add(1, 2) # 3 #> [1] 3 add(4, 6) # 10 #> [1] 10