R/add_three.R

Defines functions add_three

Documented in add_three

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