R/code.R

Defines functions mult

Documented in mult

#' Multiply two numbers

#' @param x A number.
#' @param y Another number.
#' 
#' @return The product of \code{x} and \code{y}.
#' 
#' @examples
#' mult(2, 5)
#' 
mult <- function(x, y){
  ret_value <- x*y
  return(ret_value)
}
wrightaprilm/R_package_Wright documentation built on Dec. 23, 2021, 6:12 p.m.