R/mult.R

Defines functions mult

Documented in mult

#' mult
#'
#'  two numbers
#'
#' @param x the first number
#' @param y the second number
#'
#' @return the product
#' @export
#'
#' @examples
#'
#' mult(2,4)
#' mult(c(1,3), c(2,4))
#'


mult <- function(x,y) {
     x * y
}
rparrish/MyPackage documentation built on May 28, 2019, 12:35 a.m.