R/suma.R
suma.Rd
This function sums numeric vectors
suma(x = NULL, y = NULL)
Numeric
A number or numeric vector
suma(2, 3) #> [1] 5 suma(c(2, 2), c(3, 3)) #> [1] 5 5