#' Hello, world function
#'
#' This is an example function named 'hello'
#' which prints 'Hello, world!'.
#'
#' @param name string with name
#'
#' @export
#'
#' @examples
#'
#' hello("world")
#'
#' hello("again")
#'
hello <- function(name) {
print(paste0("Hello ", name, "!"))
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.