#' adds two numbers
#'
#' @param a numeric
#' @param b numeric
#'
#' @return numeric
#' @export
#'
#' @examples sum(1,2)
#'
sum = function(a,b){
as.numeric(a) + as.numeric(b)
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.