R/some_functions.R

Defines functions dogs_over_cats

Documented in dogs_over_cats

#' Some dogs barking
#'
#' @param agree it is a dog?
#'
#' @return a loud barking noise, if it is a dog. Otherwise nothing.
#' @export
#'
#' @examples

dogs_over_cats <- function(agree = TRUE) {
    if (agree) {
        print("Woof!")
    } else {
        print("Nope")
    }
}
johnmarquess/mytemplate documentation built on May 22, 2019, 5:03 p.m.