R/things.R

#' @title Things
#'
#' @description Named vector of animals and other characters e.g. Yoda, from the \code{cowsay} package
#'
#' @details \code{things} is a named character list of ASCII animals and characters.
#' @export
#' @examples
#' things[["turkey"]]
#' things[["chuck"]] %>% cat()
#' cowsay::animals[3] %>% cat()
#' names(things)
#' multi_color(things[["stretchycat"]]) # To say something, use the cowsay package
things <-
  append(
    cowsay::animals,
    list("rms" = cowsay:::rms)
  )

Try the multicolor package in your browser

Any scripts or data that you put into this service are public.

multicolor documentation built on March 7, 2023, 7:30 p.m.