R/morecats.R

Defines functions cat_function2

#' @title Test
#'
#' @description Test
#'
#' @param symbol
#'
#' @return NULL
#'
#' @examples code('A')
#'
#' @export
#'

cat_function2 <- function(love=TRUE){
  if(love==TRUE){
    print("I love cats!")
  }
  else {
    print("I am not a cool person.")
  }
}
cbettler/421_Random_Letter documentation built on Nov. 24, 2019, 12:04 a.m.