R/subtract.R

#' Subtract one number from another number
#'
#' @param a A number
#' @param b Another number
#' @return The result of \code{b} subtracted from \code{a}
#' @examples
#' subtract(7,1)
#' @export

subtract <- function(a,b){
  out <- a - b
  return(out)
}
whipplek/subtract documentation built on May 24, 2019, 4:11 p.m.