R/hello.R

Defines functions hello

Documented in hello

#' Say hello to a user
#'
#' @param name The name of the user to greet
#' @export
hello <- function(name){
  paste("Hello", name)
}
ramnathv/temppkg3 documentation built on Feb. 19, 2020, 12:05 a.m.