R/add.R

Defines functions add

Documented in add

#' Add two numbers
#'
#' @param x The first number
#' @param y The second number
#'
#' @return
#' The sum of the two numbers
#' @export
#'
#' @examples
#' add(2, 2)
#'
add <- function(x, y){
  x + y
}
ramnathv/temppkg6 documentation built on May 4, 2020, 12:08 a.m.