R/hello.R

Defines functions hello

Documented in hello

#' My Greeting Function
#'
#' @param x The name of person to be greeting
#'
#' @return The output from \code{\link{print}}
#' @export
#'
#' @examples
#' hello("Redzuan")
#' \dontrun{
#' hello("Mat")
#' }
hello <- function(x) {
  print(paste0("Hello ", x, ". How are you today?"))
}
mredzuan/extractProj documentation built on March 29, 2020, 1 a.m.