R/cat_function.R

Defines functions cat_function

Documented in cat_function

#' 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
#'

cat_function <- function(love=TRUE){
    if(love==TRUE){
        print("I love cats!")
    }
    else {
        print("I am not a cool person.")
    }
}
rparrish/RPamisc documentation built on Aug. 13, 2024, 3:49 a.m.