R/functions.R

Defines functions add

Documented in add

#' A simple adding functions
#'
#' An example adding function
#' @param x a number
#' @param y another number
#' @examples
#' add(1, 2)
#' @export
add = function(x, y){
  x + y
}
csgillespie/dratTravis documentation built on May 14, 2019, 12:12 p.m.