#' Add two numbers
#'
#' @param x The first number
#' @param y The second number
#'
#' @return
#' The sum of the two numbers
#' @export
#'
#' @examples
#' add(2, 2)
#'
add <- function(x, y){
x + y
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.