R/test.R

Defines functions cat_functionn

Documented in cat_functionn

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

cat_functionn <- function(love=TRUE){
    if(love==TRUE){
        print("I love cats!")
    }
    else {
        print("I am not a cool person.")
    }
}
sangam998/hung documentation built on May 26, 2019, 5:43 p.m.