R/utils.R

Defines functions hello

Documented in hello

#' Say hello
#'
#' @return A string, "Hello World"
#' @export
#'
#' @examples
#' hello()
hello <- function() {
  return("Hello World!")
}
NickPTaylor/templater documentation built on May 7, 2019, 6:07 p.m.