R/grreat.R

Defines functions grreat

Documented in grreat

#' Praise food
#'
#' Print a comment to the console that praises the food you specify like Tony the Tiger.
#'
#' @param food String naming a food
#'
#' @return
#' @export
#'
#' @examples
#' grreat(food = "Okra")

grreat <- function(food) {
  print(paste(food, "is grrrreat!"))
}
bogsnork/packlearn documentation built on Dec. 19, 2021, 10:47 a.m.