R/hello.R

Defines functions hello

Documented in hello

#' My Hello World function
#'
#' @param x The name to the person to say hi to !
#'
#' @return The output from \code\{\link{print}}
#'
#' @examples
hello <- function(x) {
  print(paste0("Hello ",x," this is the world!"))
}
Olivador/firstRpackage documentation built on Dec. 18, 2021, 5:34 a.m.