#' My Greeting Function
#'
#' @param x The name of person to be greeting
#'
#' @return The output from \code{\link{print}}
#' @export
#'
#' @examples
#' hello("Redzuan")
#' \dontrun{
#' hello("Mat")
#' }
hello <- function(x) {
print(paste0("Hello ", x, ". How are you today?"))
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.