R/hello.R

#' Says Hello To The User
#'
#' This packages provides this function to say hello to the user.
#'
#' @param name A character string
#' @return A character string that says Hello \code{name}
#' @export
#'
#' @examples
#' hello(name = "Dusty")
hello <- function(name) {
  print(paste0("Hello ", name))
}
dusty-turner/turnR documentation built on June 7, 2019, 9:54 a.m.