R/hello.R

#' Hello World
#' 
#' Prints Hello World
#' 
#' @return None
#' 
#' @export
hello <- function() {
  print("Hello, world!")
}

#' Increment
#' 
#' Increments a number by one
#' 
#' @param x a number
#' 
#' @return x incremented by one
#' 
#' @export
inc <- function(x) x + 1
hatdropper1977/rbuild documentation built on May 16, 2019, 7:24 a.m.