R/goodbye.R

Defines functions goodbye

Documented in goodbye

#' @title Say Goodbye
#' 
#' @description This is a simple function with a difficult execution, unless you are not fond of the individual.
#' 
#' @param name The name of a person that is leaving. Perhaps they are taking a vacation
#' 
#' @export
#' @examples
#' goodbye()
#' goodbye('Hal')

goodbye = function(name = 'Fred') {
  cat(paste('Goodbye,', name))
}
rpruim/cvc2017 documentation built on May 24, 2019, 7:17 a.m.