R/hello.R

Defines functions hello

Documented in hello

#' My Hello World function
#'
#' @param x The person of the person to say Hi
#'
#' @return The output from \code{\link{print}}
#' @export
#'
#' @examples
#' hello("John")
#' \dontrun{
#' hello("Steve")
#' }
hello <- function(x) {
  return(paste("Hello ", x))
}
zanetti-marco/tester documentation built on May 17, 2020, 5:32 p.m.