R/goodbye.R

Defines functions goodbye

Documented in goodbye

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