R/myFunctions.R

Defines functions add_two

Documented in add_two

#' @title Add two!
#' @details Add two to your number!
#' @param x Number to add with
#' @return x + 2!
#' @export
add_two  <-  function(x){
	return( x + 2)
}
SamHall14/wk4package documentation built on Dec. 18, 2021, 12:56 p.m.