#' My hello world function
#' @param x The name of person to say hi to
#'
#' @return The output from \code{\link{print}}
#' @export
#'
#' @examples
#' hello("Steve")
#' \dontrun{
#' hello("Steve")}
hello <- function(x) {
print(paste0("Hello ",x,", this is the word world!"))
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.