R/hello.R

Defines functions hello

Documented in hello

#' Hello boilerplate function
#'
#' Description boilerplate for the hello function.
#'
#' @return NULL. Called only for the side effect of messaging the console.
#'
#' @examples
#' hello()
#' #> [1] "Hello, world!"
#'
#' @export
hello <- function() {
  print("Hello, world!")
}
jefferys/SrjNurseryR documentation built on May 24, 2019, 9:51 a.m.