#' 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")
}
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.