R/hello.R

Defines functions hello

Documented in hello

#' Hello, world!
#
#' This is an example function named 'hello'
#' which prints 'Hello, world!'.
#'
#' @export
#'
#' @examples hello()
hello <- function() {
  print("Hello World!")
}
karacitir/reproducerTaskGra documentation built on May 6, 2019, 4:32 p.m.