R/hello_world.R

Defines functions hello_world

Documented in hello_world

#' @title hello world
#'
#'
#' @return a string with "hello world" content
#' @export
#'
#' @examples hello_world()
hello_world <- function() {
  print("Hello World !")
}
ArthurData/introducer documentation built on Dec. 13, 2021, 10:13 a.m.