R/cat_function.R

#' A Cat Function
#' 
#' This function allows you to express your love of cats.
#' @param love Do you love cats? Defaults to TRUE.
#' @keywords cats
#' @export 
#' @examples 
#' cat_function()

cat_function <- function(love=TRUE) {
  
  if(love==TRUE) {
    print("I love cats. A lot.")
  } 
  else {
    print("I am not a cool person.")
  }
  
}
rafalszota/cats documentation built on May 26, 2019, 9:51 p.m.