R/add_two.R

Defines functions add_two

Documented in add_two

#' Add two
#'
#' @param x a numeric vector
#'
#' @return a numeric vector
#' @export
#'
#' @examples
#' add_two(3)
add_two <- function(x) {
  x + 2
}
dragosmg/dmgr documentation built on Dec. 11, 2021, 8:10 p.m.