R/hello.R

Defines functions hello

Documented in hello

#' @title Hello World
#' @description Say hello how you like
#'
#' @param name Insert a name, or saying
#'
#' @return vector with salutation
#' @export
#'
#' @examples
hello <- function(name) {
  stopifnot(is.character(name))
  print(paste0("Hello, ", name,"!"))
}
threadingdata/tester documentation built on Dec. 23, 2021, 9:58 a.m.