R/hello.R

#' Say hello to the world
#'
#' Function without any arguments which returns the string "Hello, world!".
#'
#' @return Character "Hello, world!"
#'
#' @examples
#' hello()
#'
#' @export
hello <- function() {
  return("Hello, world!")
}
MW89/testpckg1337 documentation built on May 28, 2019, 1:46 p.m.