#' Favorite travels
#'
#' Returns a statement of where a user's favorite place they've traveled to is.
#'
#' @param name a string containing the user's name
#' @param place a string containing the user's favorite place they've traveled to.
#'
#' @return
#' @export
#'
#' @examples
travel <- function(name, place) {
print(paste("My name is", name, "and my favorite place I've traveled to is", place))
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.