R/add.R

#' Add together two numbers.
#'
#' @param x A number.
#' @param y A number.
#' @return The sum of \code{x} and \code{y}.
#' @examples
#' add(1, 1)
#' @export
add <- function(x, y){ 
  x+ y
}
bbest/mypackage documentation built on May 11, 2019, 9:25 p.m.