#' greeting
#'
#' @param many_names Several names
#'
#' @return A greeting
#' @export
#'
#' @examples greetings(c("Alice", "Bob"))
greetings <- function(many_names){
the_greetings <- stringr::str_c("Greetings ", many_names, ".")
return(the_greetings)
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.