R/addone.R

Defines functions addone

#' @Title A function that adds 1 to the value of x,
#'
#' @param x A number
#'
#' @return X + 1
#' @export
#'
#' @examples /dontrun{addone(2)}
addone = function(x){
  x+1
}
benjamin-roper/MATH4753rope0007 documentation built on Nov. 14, 2020, 12:50 p.m.