R/dog_functions.R

#' @title A Dog Function
#'
#' @param agree
#'
#' @return
#' @export
#'
#' @examples
#' dogt_over_cats()
dogs_over_cats <- function(agree=TRUE){
  if(agree==TRUE){
    print("Woof woof! WOOF")
  }
  else {
    print("Try again.")
  }
}
jimmyg3g/dogs documentation built on May 29, 2019, 11:03 p.m.