#' Add two number function
#'
#' @param x First number
#' @param y Second number
#'
#' @return The total from 2 numbers
#' @export
#'
#' @examples
#' add_fun(1,2)
#'
#'
add_fun <- function(x,y){
print(x+y)
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.