#' Add two numbers
#'
#' Takes in two numbers to add up
#' @param x is a numeric value
#' @param y is a numeric value
#' @return The sum of the 2 inputs
#' @export
Add <- function(x, y){
return(x + y)
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.