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