R/thanks.R

Defines functions thanks

Documented in thanks

#' Say thanks
#' 
#' This is a function to automate kindness
#' That is the only description needed
#' 
#' @param name The name of a person to be thanked
#' 
thanks <- function(name="Fred"){
  cat(paste0("Thanks, ",name, "."))
}
thanks()
rpruim/cvc2017 documentation built on May 24, 2019, 7:17 a.m.