R/hello.R

Defines functions hello

Documented in hello

#' @title My Hello World function
#'
#' @param x The name of the person to say hi to
#'
#' @returnThe output from \code{\link{print}}
#' @export
#'
#' @examples
#' hello("John Doe")
#'
hello <- function(x) {
  print(paste("Hello", x, "this is the world!"))
}
alessandroARG/tester documentation built on May 1, 2020, 4:01 p.m.