#' Add together two numbers
#'
#' This function adds together two numbers specified as x and y
#'
#' Since this function is not too complicated, thera re not many details to mention here.
#'
#' @param x number
#' @param y number
#' @return The sum of x and y
#' @examples
#' add(1,0)
#' add(10,1)
#'
add <- function(x, y){
x + y
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.