#' Cool function
#'
#' This function performs cool computation
#'
#' @param x num x
#' @param y num y
#' @return x ^ y
#' @export
cool_fun <- function(x, y) {
z <- x ^ y
return(z)
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.