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
#' @return The output from \code{\link{print}}
#' @export
#'
#' @examples
#' hello("John")
#' \dontrun{
#'   hello("Steve")
#' }

hello <- function(x) {
  print(paste0("Hello, ", x, "This is the world!"))
}
tanmaydixit16/testComplexity documentation built on Jan. 21, 2020, 12:18 a.m.