#' Hello World
#'
#' Creates a string output containing "Hello World" plus a string argument
#'
#' @param x string argument
#'
#' @return String output containing "Hello World" and the argument used for x
#'
#' @examples
#' helloworld("wazup")
#'
#' @export
#'
helloworld <- function(x) {
answer <- c("Hello World", x)
return (answer)
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.