This function adds two values

suma(x, y)

Arguments

x

this is the first value we want to add.

y

this is the second value we want to add.

Examples

# Primer ejemplo suma(5, 10)
#> [1] 15
# Segundo ejemplos a <- 5 b <- 15 res <- suma(x=a, y=b) res
#> [1] 20