multip.Rd
This function multiplies two values
multip(x, y)
x | this is the first value we want to multiply. |
---|---|
y | this is the second value we want to multiply. |
# Primer ejemplo multip(5, 10)#> [1] 50# Segundo ejemplos a <- 5 b <- 15 res <- multip(x=a, y=b) res#> [1] 75