R/grind.r

#' A Grind Function
#'
#' This function allows you to grind your coffee beans, well, in theory
#' @param the bean comes from, default to Costa Rica
#' @keywords bean
#' @export
#' @examples
#' grind()

grind <- function (bean = "Costa Rica") {
  cat(paste("You've got bean from " , bean, ".\n"))
}
MikeXL/espResso documentation built on May 8, 2019, 10:49 a.m.