R/helloworld.R

Defines functions helloworld

Documented in helloworld

#' Prints Hello, World! to the console.
#'
#' @return No value returned
#' @export
#'
#' @examples
#' helloworld()
helloworld <- function() {
  message("Hello, World!")
}
nischalshrestha/hellopkgdown documentation built on Feb. 25, 2021, 2:55 p.m.