R/cat_function.R

Defines functions cat_function

Documented in cat_function

# TODO: Add comment
# 
# Author: jennifer.cahalan
###############################################################################
#' 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! Always!")
	}
	else {
		print("I am not a cool person. :-(")
	}
}
JenC36/JACtools documentation built on Oct. 20, 2024, 8:05 a.m.