R/hello.R

#' Hello boilerplate function
#'
#' Description boilerplate for the hello function.
#'
#' @return NULL. Called only for the side effect of messaging the console.
#'
#' @examples
#' hello()
#' #> [1] "Hello, world!"
#'
#' @export
hello <- function() {
  print("Hello, world!")
}
jefferys/FusionClust documentation built on May 22, 2019, 2:39 p.m.