R/ex.R

Defines functions add

Documented in add

#' Add two numbers
#'
#' Adds two numbers together via [`+`].
#' @param x,y number to add to the other
#' @return Single number
#' @export
add <- function(x, y) {
  x + y
}
schloerke/r-gha documentation built on Dec. 22, 2021, 10:22 p.m.