#' helloworld
#'
#' Displays "Hello World!"
#'
#' @param name If `TRUE`, then display name.
#'
#' @return None
#' @export
helloworld <- function(name = FALSE){
if (!name){
print("Hello World!")
} else {
print("My name is Omkar A. Katta!")
}
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.