R/praise.R

Defines functions praise

Documented in praise

#' Recieve praise
#'
#' @param name text string; This is the name of the person I want to praise
#' @param punctuation text string; This is our emphasis as a text input.
#'
#' @return Text string with praise
#' @export
#'
#' @examples
#' praise(name = "Aaron", punctuation = "!")

praise <- function(name, punctuation = "!") {
  glue::glue("You are the best, {name}{punctuation}")
}
JaydonThurai/praiseme documentation built on Dec. 18, 2021, 12:34 a.m.