#' @title Goodbye function
#' @description Say goodbye how you like
#'
#' @param name Insert a name, or saying
#'
#' @return vector with salutation
#' @export
#'
#' @examples
#' goodbye('Derek')
goodbye <- function(name) {
stopifnot(is.character(name))
print(paste0("Adios, ", name,"!"))
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.