#' Returns first element of vector
#'
#' @param x vector
#'
#' @return
#' @export
#'
#'
last_ <- function(x) {
# Return first element
return(x[length(x)])
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.