R/add.R

#' Add one number to another number
#'
#' @param a A number
#' @param b Another number
#' @return The result of \code{a} added to \code{b}
#' @examples
#' add(7,1)
#' @export

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