R/praise.R

Defines functions praise

Documented in praise

#' Deliver Praise
#'
#' @param name Text string which praises someone
#' @param punctuation This is an emphasis on the text input
#'
#' @return Text string with praise
#' @export
#'
#' @examples
#' praise(name="Steph", punctuation = "!")
praise <- function(name, punctuation = "!"){
  glue::glue("You're the best, {name}{punctuation}")
}
praise("Thomas")
SamAyrouth/MyPackage documentation built on Dec. 18, 2021, 12:05 p.m.