R/sweater.R

Defines functions sweater

Documented in sweater

#' Tell Me About Your Sweater!
#'
#' @param design This character is the name of the sweater design
#' @param fiber This character is the fiber you used to knit your sweater (ie alpaca)
#'
#' @return
#' @export
#'
#' @examples
sweater <- function(design, fiber){
  print(paste("This is the", design, "sweater knit in", fiber, "!"))
}
scoutcleonard/yarn documentation built on Dec. 22, 2021, 11:11 p.m.