#' Say "Hello" to arg
#'
#' @param whom the function says "Hello" to
#' @return chr
#' @examples
#' \dontrun{
#' hello("Bob")
#' hello("My friend")
#' }
hello <- function(name){
print(paste("Hello, ", name, "!", sep=""))
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.