#' Add together two numbers
#'
#' @param x A number
#' @param y A number
#' @return The sum of \code{x} and \code{y}
#' @examples
#' add(1, 1)
#' add(10, 1)
add <- function(x, y) {
x + y
}
#' Add together two numbers 2
#'
#' @param x A number
#' @param y A number
#' @return The sum of \code{x} and \code{y} and result
#' @examples
#' add(2, 1)
#' add(10, 7)
add2 <- function(x, y) {
x + y
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.