R/mult.R

#' Multiply together two numbers
#' 
#' @param x A number
#' @param y Another number
#' @return product The product of multiplying x and y

mult <- function (x,y){
  product <- x*y
  is.numeric(product)
  return(product)
}
natyac/R_package_Yacsko documentation built on Dec. 22, 2021, 12:02 a.m.